結果

問題 No.123 カードシャッフル
ユーザー TANIGUCHI KousukeTANIGUCHI Kousuke
提出日時 2019-12-05 17:28:19
言語 Ruby
(3.4.1)
結果
AC  
実行時間 736 ms / 5,000 ms
コード長 274 bytes
コンパイル時間 541 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 25,600 KB
最終ジャッジ日時 2024-12-21 10:14:50
合計ジャッジ時間 4,444 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
12,288 KB
testcase_01 AC 91 ms
12,032 KB
testcase_02 AC 92 ms
12,160 KB
testcase_03 AC 91 ms
12,288 KB
testcase_04 AC 91 ms
12,288 KB
testcase_05 AC 89 ms
12,160 KB
testcase_06 AC 93 ms
12,288 KB
testcase_07 AC 90 ms
12,160 KB
testcase_08 AC 91 ms
12,288 KB
testcase_09 AC 91 ms
12,160 KB
testcase_10 AC 226 ms
21,376 KB
testcase_11 AC 727 ms
25,600 KB
testcase_12 AC 736 ms
25,472 KB
testcase_13 AC 728 ms
25,472 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