結果

問題 No.123 カードシャッフル
ユーザー むらためむらため
提出日時 2019-01-17 04:59:46
言語 Nim
(2.0.2)
結果
AC  
実行時間 16 ms / 5,000 ms
コード長 429 bytes
コンパイル時間 2,274 ms
コンパイル使用メモリ 61,408 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-01 06:42:03
合計ジャッジ時間 2,856 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 16 ms
6,944 KB
testcase_12 AC 10 ms
6,940 KB
testcase_13 AC 10 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sequtils
proc getchar_unlocked():char {. importc:"getchar_unlocked",header: "<stdio.h>" .}
proc scan(): int =
  result = 0
  while true:
    var k = getchar_unlocked()
    if k < '0' or k > '9': break
    else: result = 10 * result + k.ord - '0'.ord
let n = scan()
let m = scan()
var C = toSeq(1..n)
for _ in 0..<m:
  let a = scan()
  let head = C[a-1]
  for i in (a-1).countdown(1): C[i] = C[i-1]
  C[0] = head
echo C[0]
0