結果

問題 No.123 カードシャッフル
ユーザー trineutrontrineutron
提出日時 2020-12-30 15:43:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 77 ms / 5,000 ms
コード長 176 bytes
コンパイル時間 389 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 88,464 KB
最終ジャッジ日時 2024-10-07 15:20:25
合計ジャッジ時間 1,726 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,316 KB
testcase_01 AC 38 ms
52,560 KB
testcase_02 AC 38 ms
51,808 KB
testcase_03 AC 38 ms
53,192 KB
testcase_04 AC 39 ms
52,716 KB
testcase_05 AC 38 ms
53,084 KB
testcase_06 AC 38 ms
52,564 KB
testcase_07 AC 37 ms
53,088 KB
testcase_08 AC 39 ms
52,180 KB
testcase_09 AC 39 ms
53,340 KB
testcase_10 AC 60 ms
83,264 KB
testcase_11 AC 77 ms
88,352 KB
testcase_12 AC 75 ms
88,464 KB
testcase_13 AC 73 ms
88,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
a = list(map(int, input().split()))
card = [i + 1 for i in range(n)]
for x in a:
    card[0], card[1:x] = card[x-1], card[:x-1]
print(card[0])
0