結果

問題 No.123 カードシャッフル
ユーザー bug maker / ばぐめいかー@Python学習者bug maker / ばぐめいかー@Python学習者
提出日時 2023-07-16 01:23:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 83 ms / 5,000 ms
コード長 194 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 11,824 KB
実行使用メモリ 17,984 KB
最終ジャッジ日時 2023-10-17 11:22:52
合計ジャッジ時間 1,679 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,060 KB
testcase_01 AC 29 ms
10,060 KB
testcase_02 AC 32 ms
10,060 KB
testcase_03 AC 32 ms
10,060 KB
testcase_04 AC 30 ms
10,060 KB
testcase_05 AC 30 ms
10,060 KB
testcase_06 AC 30 ms
10,060 KB
testcase_07 AC 30 ms
10,060 KB
testcase_08 AC 30 ms
10,060 KB
testcase_09 AC 29 ms
10,060 KB
testcase_10 AC 77 ms
11,860 KB
testcase_11 AC 80 ms
17,984 KB
testcase_12 AC 83 ms
16,860 KB
testcase_13 AC 83 ms
16,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())

A = list(map(int, input().split()))

Card = [int(i) for i in range(1, N+1)]

for i in range(M):
    Co = Card.pop(A[i]-1)
    Card.insert(0, Co)

print(Card[0])
0