結果

問題 No.123 カードシャッフル
ユーザー kohei2019kohei2019
提出日時 2021-06-18 02:18:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 5,000 ms
コード長 172 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 78,080 KB
最終ジャッジ日時 2024-06-11 20:35:37
合計ジャッジ時間 1,784 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 38 ms
51,568 KB
testcase_03 AC 38 ms
51,712 KB
testcase_04 AC 39 ms
51,968 KB
testcase_05 AC 40 ms
51,712 KB
testcase_06 AC 41 ms
51,712 KB
testcase_07 AC 39 ms
51,968 KB
testcase_08 AC 39 ms
51,712 KB
testcase_09 AC 44 ms
52,096 KB
testcase_10 AC 60 ms
77,440 KB
testcase_11 AC 67 ms
78,080 KB
testcase_12 AC 70 ms
78,080 KB
testcase_13 AC 71 ms
77,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
lsA = list(map(int,input().split()))
lsN = list(range(1,N+1))

for i in range(M):
    v = lsN.pop(lsA[i]-1)
    lsN.insert(0,v)
print(lsN[0])
0