/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 540.0 KiB
#2 Accepted 1ms 520.0 KiB
#3 Accepted 1ms 540.0 KiB
#4 Accepted 2ms 540.0 KiB
#5 Accepted 1ms 768.0 KiB
#6 Accepted 2ms 404.0 KiB
#7 Accepted 2ms 796.0 KiB

Code

#include<bits/stdc++.h>
using namespace std;

#define int long long
#define endl "\n"
#define F first
#define S second
#define pii pair<int, int>
#define sz(x) (int) (x.size())

// #include<ext/pb_ds/assoc_container.hpp>
// #include<ext/pb_ds/tree_policy.hpp>
// using namespace __gnu_pbds;

// template<typename T> using o_set = tree<T, null_type, std::less<T>, rb_tree_tag, tree_order_statistics_node_update>;

const int N = 2e5 + 10;
const int mod = 1e9 + 7;
const int INF = 1e18 + 10;

mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());


void solve() {
    int n; cin>>n;
    cout<<0<<endl;
}

signed main() {
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);

    int t = 1; //cin>>t;
    for(int tc = 1; tc <= t; tc++) {
        // cerr<<"Case "<<tc<<":\n";
        solve();
    }
}

Information

Submit By
Type
Submission
Problem
P1124 Even Number
Contest
LU IUJPC : Sylhet Division 2024
Language
C++17 (G++ 13.2.0)
Submit At
2024-12-09 04:46:24
Judged At
2024-12-09 04:46:24
Judged By
Score
100
Total Time
2ms
Peak Memory
796.0 KiB