結果

問題 No.26 シャッフルゲーム
ユーザー あかりきあかりき
提出日時 2021-02-08 06:41:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 5,000 ms
コード長 174 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 53,120 KB
最終ジャッジ日時 2024-07-05 01:41:01
合計ジャッジ時間 1,116 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,612 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 42 ms
52,608 KB
testcase_03 AC 40 ms
52,224 KB
testcase_04 AC 41 ms
52,736 KB
testcase_05 AC 40 ms
52,864 KB
testcase_06 AC 42 ms
52,224 KB
testcase_07 AC 40 ms
52,352 KB
testcase_08 AC 42 ms
52,352 KB
testcase_09 AC 43 ms
53,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
m=int(input())
l=[list(map(int,input().split())) for i in range(m)]
for i in range(m):
  if n==l[i][0]:
    n=l[i][1]
  elif n==l[i][1]:
    n=l[i][0]
print(n)
0