結果

問題 No.123 カードシャッフル
ユーザー rlangevinrlangevin
提出日時 2025-01-01 18:05:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 5,000 ms
コード長 182 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 88,864 KB
最終ジャッジ日時 2025-01-01 18:05:47
合計ジャッジ時間 2,017 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,716 KB
testcase_01 AC 37 ms
52,604 KB
testcase_02 AC 35 ms
53,512 KB
testcase_03 AC 36 ms
53,316 KB
testcase_04 AC 38 ms
53,880 KB
testcase_05 AC 38 ms
52,708 KB
testcase_06 AC 37 ms
52,820 KB
testcase_07 AC 35 ms
52,376 KB
testcase_08 AC 37 ms
51,972 KB
testcase_09 AC 39 ms
53,340 KB
testcase_10 AC 59 ms
86,544 KB
testcase_11 AC 80 ms
88,864 KB
testcase_12 AC 81 ms
88,436 KB
testcase_13 AC 79 ms
88,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
A = list(map(int, input().split()))
ans = list(range(1, N + 1))

for a in A:
    a -= 1
    ans = [ans[a]] + ans[:a] + ans[a + 1:]
    
print(ans[0])
0