結果

問題 No.942 プレゼント配り
ユーザー koi_kotyakoi_kotya
提出日時 2019-12-05 01:33:57
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 422 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 14,976 KB
最終ジャッジ日時 2024-05-08 17:44:09
合計ジャッジ時間 4,212 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 244 ms
14,976 KB
testcase_02 AC 89 ms
12,160 KB
testcase_03 AC 78 ms
12,160 KB
testcase_04 AC 182 ms
13,696 KB
testcase_05 WA -
testcase_06 AC 78 ms
12,032 KB
testcase_07 AC 77 ms
12,032 KB
testcase_08 AC 162 ms
13,184 KB
testcase_09 AC 167 ms
13,312 KB
testcase_10 AC 80 ms
12,160 KB
testcase_11 AC 85 ms
12,160 KB
testcase_12 AC 83 ms
12,160 KB
testcase_13 AC 86 ms
12,160 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 80 ms
12,160 KB
testcase_19 AC 77 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n,k = gets.split.map(&:to_i)
if (n/k).odd?
    puts "No"
else
    puts "Yes"
    a = Array.new(k).map{Array.new(n/k)}
    (0...(n/k)).each do |i|
        if (i.even?)
            (0...k).each do |j|
                a[j][i] = i*k+j+1
            end
        else
            (0...k).each do |j|
                a[j][i] = i*k+k-j
            end
        end
    end
    a.each do |arr|
        puts arr.join(" ")
    end
end
0