結果

問題 No.26 シャッフルゲーム
ユーザー zakuro9715zakuro9715
提出日時 2015-10-08 01:11:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 5,000 ms
コード長 183 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 53,876 KB
最終ジャッジ日時 2024-07-20 02:01:09
合計ジャッジ時間 1,391 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,416 KB
testcase_01 AC 39 ms
53,336 KB
testcase_02 AC 42 ms
53,604 KB
testcase_03 AC 45 ms
53,828 KB
testcase_04 AC 41 ms
52,796 KB
testcase_05 AC 42 ms
53,088 KB
testcase_06 AC 42 ms
52,640 KB
testcase_07 AC 42 ms
52,780 KB
testcase_08 AC 40 ms
53,876 KB
testcase_09 AC 40 ms
53,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = [False] * 4
s[int(input())] = True
for i in range(int(input())):
    a, b = map(int, input().split())
    s[a], s[b] = s[b], s[a]
for i in range(4):
    if s[i]:
        print(i)
0