結果
問題 | No.26 シャッフルゲーム |
ユーザー | arito_asu |
提出日時 | 2020-06-13 22:34:51 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 392 bytes |
コンパイル時間 | 101 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-06-25 23:46:07 |
合計ジャッジ時間 | 1,074 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 31 ms
10,752 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
n = int(input()) m = int(input()) cup = [] for x in [1,2,3]: if x == n: cup.append(True) else: cup.append(False) seq = [] for _ in range(m): seq.append(list(map(int,input().split()))) for u in seq: frm = u[0]-1; fval = cup[frm] to = u[1]-1; tval = cup[to] cup[to] = fval cup[frm] = fval for i,c in enumerate(cup,1): if c: print(i)