結果

問題 No.1893 Cycle
ユーザー hiro1729hiro1729
提出日時 2023-09-08 17:06:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 102 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,488 KB
実行使用メモリ 53,548 KB
最終ジャッジ日時 2024-06-26 09:55:38
合計ジャッジ時間 2,106 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

x, y = map(int, input().split())
if (x + 4) % 12 != y:
	print((x + 4) % 12)
else:
	print((x + 8) % 12)
0