結果

問題 No.123 カードシャッフル
ユーザー kichirb3kichirb3
提出日時 2018-03-05 20:15:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 69 ms / 5,000 ms
コード長 658 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 17,180 KB
最終ジャッジ日時 2024-09-13 14:28:48
合計ジャッジ時間 1,759 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 31 ms
10,880 KB
testcase_10 AC 62 ms
12,544 KB
testcase_11 AC 68 ms
17,180 KB
testcase_12 AC 69 ms
16,436 KB
testcase_13 AC 69 ms
16,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-
"""
No.123 カードシャッフル
https://yukicoder.me/problems/no/123

"""
import sys
from sys import stdin
input = stdin.readline


def do_shuffle(deck, shuffles):
    for s in shuffles:
        top = deck.pop(s-1)     # 上からs枚目を抜いて
        deck.insert(0, top)     # 一番上に積む


def main(args):
    N, M = map(int, input().split())
    shuffles = [int(x) for x in input().split()]
    
    deck = list(range(1, N+1))  # カードを用意
    do_shuffle(deck, shuffles)  # シャッフル
    print(deck[0])              # 1番上のカードの番号


if __name__ == '__main__':
    main(sys.argv[1:])
0