結果
問題 | No.524 コインゲーム |
ユーザー | bin101 |
提出日時 | 2020-03-31 18:23:08 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 7,254 bytes |
コンパイル時間 | 1,227 ms |
コンパイル使用メモリ | 102,088 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-24 22:29:10 |
合計ジャッジ時間 | 2,334 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 1 ms
6,944 KB |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | AC | 1 ms
6,940 KB |
testcase_19 | AC | 2 ms
6,944 KB |
testcase_20 | AC | 2 ms
6,944 KB |
testcase_21 | AC | 2 ms
6,944 KB |
testcase_22 | AC | 2 ms
6,940 KB |
testcase_23 | AC | 2 ms
6,940 KB |
testcase_24 | AC | 2 ms
6,940 KB |
testcase_25 | AC | 2 ms
6,940 KB |
testcase_26 | WA | - |
testcase_27 | AC | 2 ms
6,940 KB |
testcase_28 | AC | 2 ms
6,944 KB |
testcase_29 | AC | 2 ms
6,944 KB |
testcase_30 | AC | 2 ms
6,940 KB |
testcase_31 | AC | 1 ms
6,944 KB |
testcase_32 | AC | 2 ms
6,944 KB |
testcase_33 | AC | 2 ms
6,944 KB |
testcase_34 | AC | 2 ms
6,940 KB |
ソースコード
#pragma GCC optimize("Ofast") #include <cassert> #include <cstdio> #include <cstdlib> #include <string> #include <algorithm> #include <iostream> #include <queue> #include <vector> #include <bitset> #include <cmath> #include <limits> #include <iostream> #include <map> #include <set> #include <stack> #include <tuple> #include <iomanip> #include <functional> #include <complex> using namespace std; using ll=long long int; using pii=pair<int,int>; using pil=pair<int,ll>; using pli=pair<ll,int>; using pll=pair<ll,ll>; using psi=pair<string,int>; using pis=pair<int,string>; using psl=pair<string,ll>; using pls=pair<ll,string>; using pss=pair<string,string>; template<typename T> using vc=vector<T>; template<typename T> using vvc=vector<vector<T>>; template<typename T> using vvvc=vector<vector<vector<T>>>; template<typename T> using vvvvc=vector<vvvc<T>>; template<typename T> using vvvvvc=vector<vvvvc<T>>; template<class T,class U>inline constexpr bool chmin(T&a,const U b){if(a<=b)return false;a=b;return true;} template<class T,class U>inline constexpr bool chmax(T&a,const U b){if(a>=b)return false;a=b;return true;} #define bit(n,k) ( (n>>k)&1 ) inline void bin101(){ ios::sync_with_stdio(false); cin.tie(nullptr); cout<<fixed<<setprecision(20); } template<typename T> inline void Yes(T flag){ if(flag) cout<<"Yes"<<endl; else cout<<"No"<<endl; } template<typename T> inline void YES(T flag){ if(flag) cout<<"YES"<<endl; else cout<<"NO"<<endl; } //1-indexed vector cin template<typename T> inline void vin1(vector<T> &v){ for(int i=1;i<v.size();i++) cin>>v[i]; } //0-indexed vector cin template<typename T> inline void vin0(vector<T> &v){ for(int i=0;i<v.size();i++) cin>>v[i]; } //1-indexed vector<vector> cin template<typename T> inline void vin1(vector<vector<T>> &v){ for(int i=1;i<v.size();i++){ for(int j=1;j<v[i].size();j++) cin>>v[i][j]; } } //0-indexed vector<vector> cin template<typename T> inline void vin0(vector<vector<T>> &v){ for(int i=0;i<v.size();i++){ for(int j=0;j<v[i].size();j++) cin>>v[i][j]; } } //デバッグ template<typename T> inline void vout(const vector<T> &v){ cout<<"\nstart\n"; const int sz=v.size(); for(int i=0;i<sz;i++){ cout<<i<<" "<<v[i]<<'\n'; } cout<<"end\n"<<endl; } //デバッグ template<typename T> inline void vout(const vvc<T> &v){ cout<<"\nstart\n"; const int sz=v.size(); for(int i=0;i<sz;i++){ int ssz=v[i].size(); for(int j=0;j<ssz;j++){ cout<<i<<" "<<j<<" "<<v[i][j]<<'\n'; } } cout<<"\nend\n"<<endl; } //デバッグ(グリッド) template<typename T> inline void gvout(const vector<T> &v){ cout<<"\nstart\n"; const int sz=v.size(); for(int i=0;i<sz;i++){ if(i) cout<<" "; cout<<v[i]; } cout<<"\nend\n"<<endl; } //デバッグ(グリッド) template<typename T> inline void gvout(const vvc<T> &v){ cout<<"\nstart\n"; const int sz=v.size(); for(int i=0;i<sz;i++){ int ssz=v[i].size(); for(int j=0;j<ssz;j++){ if(j) cout<<" "; cout<<v[i][j]; } cout<<endl; } cout<<"end\n"<<endl; } //デバッグ template<typename T> inline void vout(const vvvc<T> &v){ cout<<"\nstart\n"; const int sz=v.size(); for(int i=0;i<sz;i++){ int ssz=v[i].size(); for(int j=0;j<ssz;j++){ int sssz=v[i][j].size(); for(int k=0;k<sssz;k++){ cout<<i<<" "<<j<<" "<<k<<" "<<v[i][j][k]<<'\n'; } } } cout<<"end\n"<<endl; } //pair cout template<typename T, typename U> inline ostream &operator<<(ostream &os,const pair<T,U> &p) { os<<p.first<<" "<<p.second; return os; } //pair cin template<typename T, typename U> inline istream &operator>>(istream &is,pair<T,U> &p) { is>>p.first>>p.second; return is; } //ソート template<typename T> inline void vsort(vector<T> &v){ sort(v.begin(),v.end()); } //逆順ソート template<typename T> inline void rvsort(vector<T> &v){ sort(v.rbegin(),v.rend()); } //要素数a 初期値x template<typename T> inline vector<T> vmake(int a,T x){ return vector<T>(a,x); } //data[a][b] 初期値x template<typename T> inline vector<vector<T>> vmake(int a,int b,T x){ return vector<vector<T>>(a, vector<T>(b,x)); } //data[a][b][c] 初期値x template<typename T> inline vector<vector<vector<T>>> vmake(int a,int b,int c,T x){ return vector<vector<vector<T>>> (a, vector<vector<T>>(b, vector<T>(c, x))); } //data[a][b][c][d] 初期値x template<typename T> inline vector<vector<vector<vector<T>>>> vmake(int a,int b,int c,int d,T x){ return vector<vector<vector<vector<T>>>> (a,vvvc<T>(b,vvc<T>(c,vc<T>(d,x)))); } //data[a][b][c][d][e] 初期値x template<typename T> inline vvvvvc<T> vmake(int a,int b,int c,int d,int e,T x){ return vvvvvc<T> (a,vvvvc<T>(b,vvvc<T>(c,vvc<T>(d,vc<T>(e,x))))); } //1ビットの数を返す inline int popcount(int x){ return __builtin_popcount(x); } //1ビットの数を返す inline int popcount(ll x){ return __builtin_popcountll(x); } //queのfront() pop() template<typename T> inline T pop(queue<T> &que){ T x=que.front(); que.pop(); return x; } //priority_que top() pop() template<typename T> inline T pop(priority_queue<T> &que){ T x=que.top(); que.pop(); return x; } //stack top() pop() template<typename T> inline T pop(stack<T> &st){ T x=st.top(); st.pop(); return x; } #define SZ(x) ( (int)x.size() ) #define pb push_back /* 満たすものの個数を返す mode:0 x未満 mode:1 x以下の数 mode:2 x以上の数 mode:3 x超 mode:4 x */ template<typename T> inline int count_bound(vector<T> &v,T x,int mode){ switch(mode){ case 0: return lower_bound(v.begin(),v.end(),x)-v.begin(); case 1: return upper_bound(v.begin(),v.end(),x)-v.begin(); case 2: return v.end()-lower_bound(v.begin(),v.end(),x); case 3: return v.end()-upper_bound(v.begin(),v.end(),x); case 4: return upper_bound(v.begin(),v.end(),x)-lower_bound(v.begin(),v.end(),x); } } /* mode:0 xより小さい数で最大の数 mode:1 x以下の数で最大の数 mode:2 x以上の数で最小の数 mode:3 xより大きい数で最小の数 */ template<typename T> inline T value_bound(vector<T> &v,T x,int mode){ switch(mode){ case 0: return *(--lower_bound(v.begin(),v.end(),x)); case 1: return *(--upper_bound(v.begin(),v.end(),x)); case 2: return *lower_bound(v.begin(),v.end(),x); case 3: return *upper_bound(v.begin(),v.end(),x); } } constexpr int MAX=1<<30; constexpr ll INF=1LL<<62; constexpr ll MOD=1e9+7; int dx[]={1,-1,0,0},dy[]={0,0,-1,1}; //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ signed main(){ bin101(); int N; cin>>N; if(N%4==3) cout<<"X"<<endl; else cout<<"O"<<endl; }