結果

問題 No.26 シャッフルゲーム
ユーザー convexineqconvexineq
提出日時 2020-11-22 22:37:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 5,000 ms
コード長 262 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 82,692 KB
実行使用メモリ 53,976 KB
最終ジャッジ日時 2024-07-23 16:47:01
合計ジャッジ時間 1,266 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,488 KB
testcase_01 AC 38 ms
52,568 KB
testcase_02 AC 37 ms
52,768 KB
testcase_03 AC 37 ms
52,940 KB
testcase_04 AC 38 ms
52,360 KB
testcase_05 AC 37 ms
52,844 KB
testcase_06 AC 37 ms
52,124 KB
testcase_07 AC 38 ms
51,772 KB
testcase_08 AC 38 ms
53,976 KB
testcase_09 AC 38 ms
51,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!
import sys
readline = sys.stdin.readline
read = sys.stdin.read

n = int(readline())
q = int(readline())
r = [0,0,0,0]
r[n] = 1
for _ in range(q):
    z,w = map(int,readline().split())
    r[z],r[w] = r[w],r[z]

print(r.index(1))
0