結果

問題 No.524 コインゲーム
ユーザー ntudantuda
提出日時 2024-10-24 21:34:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 68 bytes
コンパイル時間 6,820 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 53,776 KB
最終ジャッジ日時 2024-10-24 21:34:43
合計ジャッジ時間 3,544 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,448 KB
testcase_01 AC 34 ms
52,216 KB
testcase_02 AC 35 ms
52,252 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 39 ms
52,232 KB
testcase_06 AC 35 ms
52,036 KB
testcase_07 AC 35 ms
52,404 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 35 ms
52,348 KB
testcase_12 AC 36 ms
51,936 KB
testcase_13 AC 38 ms
53,064 KB
testcase_14 AC 40 ms
52,524 KB
testcase_15 AC 34 ms
52,420 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 35 ms
52,364 KB
testcase_19 AC 36 ms
52,572 KB
testcase_20 WA -
testcase_21 AC 38 ms
53,192 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 36 ms
52,204 KB
testcase_25 AC 36 ms
52,028 KB
testcase_26 AC 36 ms
51,796 KB
testcase_27 WA -
testcase_28 AC 36 ms
52,888 KB
testcase_29 AC 35 ms
53,172 KB
testcase_30 AC 35 ms
53,160 KB
testcase_31 AC 35 ms
53,456 KB
testcase_32 WA -
testcase_33 AC 34 ms
52,820 KB
testcase_34 AC 34 ms
52,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

if (int(input()) + 1 % 4) == 0:
    print("X")
else:
    print("O")
0