結果
問題 | No.1764 Square |
ユーザー | siman |
提出日時 | 2021-11-27 13:38:44 |
言語 | Ruby (3.3.0) |
結果 |
AC
|
実行時間 | 89 ms / 2,000 ms |
コード長 | 237 bytes |
コンパイル時間 | 157 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 12,288 KB |
最終ジャッジ日時 | 2024-06-30 03:53:08 |
合計ジャッジ時間 | 1,532 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 88 ms
12,160 KB |
testcase_01 | AC | 86 ms
12,288 KB |
testcase_02 | AC | 86 ms
12,288 KB |
testcase_03 | AC | 89 ms
12,032 KB |
testcase_04 | AC | 88 ms
12,032 KB |
testcase_05 | AC | 85 ms
12,032 KB |
testcase_06 | AC | 86 ms
12,288 KB |
testcase_07 | AC | 86 ms
12,160 KB |
コンパイルメッセージ
Syntax OK
ソースコード
queues = [ ['A', 'E'], ['B'], ['C'], ['D'], ] K = gets.to_i K.times do |i| idx = i % 4 n_idx = (i + 1) % 4 next if queues[idx].empty? queues[n_idx].push(queues[idx].shift) end queues.each do |que| puts que.join end