結果

問題 No.123 カードシャッフル
ユーザー iwamotiwamot
提出日時 2016-01-24 23:16:59
言語 Ruby
(3.3.0)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 185 bytes
コンパイル時間 40 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 18,688 KB
最終ジャッジ日時 2024-09-21 16:10:42
合計ジャッジ時間 2,019 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,288 KB
testcase_01 AC 82 ms
12,160 KB
testcase_02 AC 77 ms
12,288 KB
testcase_03 AC 79 ms
12,288 KB
testcase_04 AC 75 ms
12,032 KB
testcase_05 AC 77 ms
12,288 KB
testcase_06 AC 76 ms
12,288 KB
testcase_07 AC 79 ms
12,160 KB
testcase_08 AC 80 ms
12,160 KB
testcase_09 AC 80 ms
12,160 KB
testcase_10 AC 122 ms
18,688 KB
testcase_11 AC 131 ms
18,688 KB
testcase_12 AC 133 ms
18,560 KB
testcase_13 AC 130 ms
18,560 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - m
Syntax OK

ソースコード

diff #

n, m = gets.split(' ').map(&:to_i)
a = gets.split(' ').map(&:to_i)

cards = (1..n).to_a
a.each do |i|
  next if i == 1
  c = cards.delete_at(i - 1)
  cards.unshift c
end

puts cards[0]
0