結果

問題 No.26 シャッフルゲーム
ユーザー tobusakanatobusakana
提出日時 2022-11-20 11:20:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 5,000 ms
コード長 254 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 54,364 KB
最終ジャッジ日時 2024-09-21 12:17:27
合計ジャッジ時間 1,223 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,880 KB
testcase_01 AC 34 ms
52,740 KB
testcase_02 AC 37 ms
54,364 KB
testcase_03 AC 37 ms
54,140 KB
testcase_04 AC 41 ms
51,952 KB
testcase_05 AC 36 ms
53,076 KB
testcase_06 AC 38 ms
54,016 KB
testcase_07 AC 38 ms
52,888 KB
testcase_08 AC 38 ms
53,768 KB
testcase_09 AC 36 ms
53,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
cup = [False] * 3
cup[N - 1] = True
M = int(input())
for _ in range(M):
    P,Q = map(int,input().split())
    cup[P - 1], cup[Q - 1] = cup[Q - 1], cup[P - 1]
    
for i in range(3):
    if cup[i]:
        print(i + 1)
        break
    
0