結果

問題 No.524 コインゲーム
ユーザー もちふわゆるゆるもちふわゆるゆる
提出日時 2023-04-14 17:31:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 1,000 ms
コード長 243 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,052 KB
実行使用メモリ 54,116 KB
最終ジャッジ日時 2024-10-10 08:38:39
合計ジャッジ時間 2,889 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,860 KB
testcase_01 AC 44 ms
52,984 KB
testcase_02 AC 42 ms
52,312 KB
testcase_03 AC 39 ms
52,440 KB
testcase_04 AC 40 ms
52,952 KB
testcase_05 AC 40 ms
52,208 KB
testcase_06 AC 40 ms
53,960 KB
testcase_07 AC 39 ms
52,752 KB
testcase_08 AC 39 ms
51,884 KB
testcase_09 AC 40 ms
52,948 KB
testcase_10 AC 44 ms
52,952 KB
testcase_11 AC 39 ms
53,232 KB
testcase_12 AC 39 ms
52,584 KB
testcase_13 AC 40 ms
52,872 KB
testcase_14 AC 39 ms
53,288 KB
testcase_15 AC 40 ms
52,676 KB
testcase_16 AC 40 ms
52,028 KB
testcase_17 AC 40 ms
52,868 KB
testcase_18 AC 40 ms
53,296 KB
testcase_19 AC 40 ms
52,808 KB
testcase_20 AC 41 ms
52,128 KB
testcase_21 AC 39 ms
53,640 KB
testcase_22 AC 40 ms
53,136 KB
testcase_23 AC 40 ms
52,572 KB
testcase_24 AC 39 ms
53,332 KB
testcase_25 AC 40 ms
52,192 KB
testcase_26 AC 40 ms
51,696 KB
testcase_27 AC 40 ms
53,388 KB
testcase_28 AC 40 ms
53,288 KB
testcase_29 AC 40 ms
53,536 KB
testcase_30 AC 40 ms
54,116 KB
testcase_31 AC 40 ms
52,348 KB
testcase_32 AC 40 ms
52,512 KB
testcase_33 AC 39 ms
52,500 KB
testcase_34 AC 39 ms
53,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, math
input = lambda: sys.stdin.readline()[:-1]
def MI(): return map(int, input().split())
inf = 10**18

n, = MI()
print("X" if n%4==3 else "O")

# res = 0
# for i in range(1, n+1):
#     res ^= i
#     if res==0:
#         print(i)
0