結果
問題 | No.524 コインゲーム |
ユーザー | glreto |
提出日時 | 2020-10-10 10:17:54 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 983 bytes |
コンパイル時間 | 768 ms |
コンパイル使用メモリ | 92,180 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-20 15:41:41 |
合計ジャッジ時間 | 6,458 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 434 ms
5,376 KB |
testcase_03 | AC | 257 ms
5,376 KB |
testcase_04 | AC | 725 ms
5,376 KB |
testcase_05 | AC | 3 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 340 ms
5,376 KB |
testcase_08 | AC | 198 ms
5,376 KB |
testcase_09 | AC | 187 ms
5,376 KB |
testcase_10 | AC | 102 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 5 ms
5,376 KB |
testcase_18 | AC | 3 ms
5,376 KB |
testcase_19 | AC | 3 ms
5,376 KB |
testcase_20 | AC | 4 ms
5,376 KB |
testcase_21 | AC | 4 ms
5,376 KB |
testcase_22 | AC | 5 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 14 ms
5,376 KB |
testcase_25 | AC | 32 ms
5,376 KB |
testcase_26 | WA | - |
testcase_27 | AC | 736 ms
5,376 KB |
testcase_28 | AC | 351 ms
5,376 KB |
testcase_29 | AC | 76 ms
5,376 KB |
testcase_30 | AC | 392 ms
5,376 KB |
testcase_31 | AC | 141 ms
5,376 KB |
testcase_32 | AC | 2 ms
5,376 KB |
testcase_33 | AC | 2 ms
5,376 KB |
testcase_34 | AC | 13 ms
5,376 KB |
ソースコード
#include <iostream> #include<vector> #include<algorithm> #include<map> #include<string> #include<iomanip> #include<set> #include<queue> #include<deque> #include<sstream> #include<cmath> #include<functional> using namespace std; #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define req(i,n) for(int i = 1;i <= n; i++) #define rrep(i,n) for(int i = n-1;i >= 0;i--) #define ALL(obj) begin(obj), end(obj) #define RALL(a) rbegin(a),rend(a) typedef long long int ll; typedef long double ld; template<typename A, size_t N, typename T> void Fill(A(&array)[N], const T& val) { std::fill((T*)array, (T*)(array + N), val); } const int inf = 2e9; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } int main() { int n,ans = 0; cin >> n; req(i, n) { ans ^= i; }if (ans != 0) cout << "O" << endl; else cout << "X" << endl; }