結果

問題 No.123 カードシャッフル
ユーザー first_vilfirst_vil
提出日時 2020-08-03 10:00:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 193 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 81,924 KB
実行使用メモリ 89,076 KB
最終ジャッジ日時 2024-07-22 07:40:38
合計ジャッジ時間 2,034 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,556 KB
testcase_01 AC 42 ms
53,868 KB
testcase_02 AC 42 ms
53,512 KB
testcase_03 AC 41 ms
54,728 KB
testcase_04 AC 41 ms
54,344 KB
testcase_05 AC 43 ms
54,352 KB
testcase_06 AC 42 ms
53,648 KB
testcase_07 AC 41 ms
54,200 KB
testcase_08 AC 44 ms
54,044 KB
testcase_09 AC 41 ms
53,808 KB
testcase_10 AC 94 ms
88,124 KB
testcase_11 AC 93 ms
89,076 KB
testcase_12 AC 125 ms
88,560 KB
testcase_13 AC 125 ms
88,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n,m=map(int,input().split())
d=deque([i for i in range(n)])
for i in list(map(int,input().split())):
  tmp=d[i-1]
  d.remove(tmp)
  d.appendleft(tmp)
print(d[0]+1)
0