結果

問題 No.123 カードシャッフル
ユーザー TANIGUCHI KousukeTANIGUCHI Kousuke
提出日時 2019-12-05 17:28:19
言語 Ruby
(3.3.0)
結果
AC  
実行時間 715 ms / 5,000 ms
コード長 274 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 25,728 KB
最終ジャッジ日時 2024-06-01 06:26:18
合計ジャッジ時間 4,313 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
12,160 KB
testcase_01 AC 89 ms
12,288 KB
testcase_02 AC 89 ms
12,288 KB
testcase_03 AC 91 ms
12,160 KB
testcase_04 AC 90 ms
12,288 KB
testcase_05 AC 91 ms
12,160 KB
testcase_06 AC 91 ms
12,288 KB
testcase_07 AC 90 ms
12,160 KB
testcase_08 AC 90 ms
12,160 KB
testcase_09 AC 88 ms
12,160 KB
testcase_10 AC 220 ms
21,376 KB
testcase_11 AC 713 ms
25,600 KB
testcase_12 AC 715 ms
25,728 KB
testcase_13 AC 711 ms
25,600 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, M = gets.split.map(&:to_i)
A = gets.split.map(&:to_i)
S = A.inject((0 .. N).to_a) do |d,a|
  Array.new(N + 1, 0).tap do |n|
    n[1] = d[a]
    (1 ... a).each do |i|
      n[i + 1] = d[i]
    end
    (a + 1 .. N).each do |i|
      n[i] = d[i]
    end
  end
end
puts S[1]
0