結果

問題 No.123 カードシャッフル
ユーザー togatogatogatoga
提出日時 2015-09-03 09:31:22
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 117 ms / 5,000 ms
コード長 259 bytes
コンパイル時間 1,435 ms
コンパイル使用メモリ 76,544 KB
実行使用メモリ 85,632 KB
最終ジャッジ日時 2024-07-18 21:52:57
合計ジャッジ時間 3,338 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
75,264 KB
testcase_01 AC 81 ms
75,136 KB
testcase_02 AC 78 ms
75,392 KB
testcase_03 AC 84 ms
75,136 KB
testcase_04 AC 75 ms
75,392 KB
testcase_05 AC 75 ms
75,648 KB
testcase_06 AC 75 ms
75,392 KB
testcase_07 AC 88 ms
75,392 KB
testcase_08 AC 83 ms
75,392 KB
testcase_09 AC 78 ms
75,136 KB
testcase_10 AC 105 ms
85,016 KB
testcase_11 AC 117 ms
84,992 KB
testcase_12 AC 114 ms
85,632 KB
testcase_13 AC 113 ms
85,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int, raw_input().split())
A = map(int, raw_input().split())
pos = [0] * (N + 1)
for i in range(1, N + 1):
    pos[i] = i

for x in A:
    tmp = pos[x]
    for y in reversed(range(2, x + 1)):
        pos[y] = pos[y - 1]
    pos[1] = tmp
print pos[1]
0