結果

問題 No.123 カードシャッフル
ユーザー dangodango
提出日時 2023-06-05 21:48:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 192 ms / 5,000 ms
コード長 210 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 17,220 KB
最終ジャッジ日時 2024-06-09 05:19:51
合計ジャッジ時間 2,074 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,880 KB
testcase_01 AC 36 ms
10,752 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 32 ms
10,752 KB
testcase_05 AC 34 ms
10,624 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 32 ms
10,752 KB
testcase_08 AC 32 ms
10,624 KB
testcase_09 AC 32 ms
10,624 KB
testcase_10 AC 68 ms
12,616 KB
testcase_11 AC 186 ms
17,220 KB
testcase_12 AC 192 ms
16,504 KB
testcase_13 AC 189 ms
16,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int,input().split())
A = list(map(int,input().split()))
X = [i for i in range(N,0,-1)]
for i in range(M):
    T = A[i]
    if T == 1:
        continue
    X = X[:-T] + X[-T+1:] + [X[-T]]
print(X[-1])
0