結果

問題 No.123 カードシャッフル
ユーザー YU HiroseYU Hirose
提出日時 2024-08-08 22:48:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 5,000 ms
コード長 198 bytes
コンパイル時間 455 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 88,996 KB
最終ジャッジ日時 2024-08-08 22:48:42
合計ジャッジ時間 2,068 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
55,668 KB
testcase_01 AC 37 ms
55,184 KB
testcase_02 AC 40 ms
54,800 KB
testcase_03 AC 40 ms
54,692 KB
testcase_04 AC 37 ms
54,576 KB
testcase_05 AC 36 ms
53,928 KB
testcase_06 AC 41 ms
53,548 KB
testcase_07 AC 37 ms
53,632 KB
testcase_08 AC 38 ms
54,116 KB
testcase_09 AC 37 ms
54,268 KB
testcase_10 AC 57 ms
83,424 KB
testcase_11 AC 78 ms
87,120 KB
testcase_12 AC 97 ms
88,864 KB
testcase_13 AC 97 ms
88,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n, m = map(int, input().split())
a = list(map(int, input().split()))
p = deque(range(1, n+1))

for x in a:
    v = p[x-1]
    del p[x-1]
    p.appendleft(v)
print(p[0])
0