結果
問題 |
No.26 シャッフルゲーム
|
ユーザー |
|
提出日時 | 2018-03-28 14:32:38 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 31 ms / 5,000 ms |
コード長 | 375 bytes |
コンパイル時間 | 93 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-06-25 13:10:56 |
合計ジャッジ時間 | 1,078 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 10 |
ソースコード
position_of_cup = int(input()) change_times = int(input()) for i in range(change_times): change_position = list(map(int,input().split(" "))) if position_of_cup in change_position: if position_of_cup == change_position[0]: position_of_cup = change_position[1] else: position_of_cup = change_position[0] print(position_of_cup)