結果

問題 No.1893 Cycle
ユーザー tetztetz
提出日時 2022-04-29 22:06:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 113 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 53,556 KB
最終ジャッジ日時 2024-06-29 03:34:23
合計ジャッジ時間 1,909 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,232 KB
testcase_01 AC 37 ms
52,228 KB
testcase_02 AC 39 ms
52,808 KB
testcase_03 AC 32 ms
52,128 KB
testcase_04 AC 34 ms
52,544 KB
testcase_05 AC 34 ms
52,900 KB
testcase_06 AC 33 ms
52,744 KB
testcase_07 AC 33 ms
52,544 KB
testcase_08 AC 35 ms
52,276 KB
testcase_09 AC 33 ms
53,312 KB
testcase_10 AC 32 ms
52,276 KB
testcase_11 AC 32 ms
53,556 KB
testcase_12 AC 33 ms
52,400 KB
testcase_13 AC 33 ms
52,164 KB
testcase_14 AC 33 ms
52,400 KB
testcase_15 AC 32 ms
53,160 KB
testcase_16 AC 32 ms
53,376 KB
testcase_17 AC 32 ms
52,348 KB
testcase_18 AC 35 ms
52,272 KB
testcase_19 AC 33 ms
52,816 KB
testcase_20 AC 32 ms
52,464 KB
testcase_21 AC 31 ms
53,288 KB
testcase_22 AC 33 ms
52,860 KB
testcase_23 AC 33 ms
52,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X,Y = map(int, input().split())
Z1 = (X + 4) % 12
Z2 = (X + 8) % 12
if Z1 != Y:
    print(Z1)
else:
    print(Z2)
0