結果

問題 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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 32
権限があれば一括ダウンロードができます

ソースコード

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