結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 262 ms
15,232 KB
testcase_02 AC 88 ms
12,160 KB
testcase_03 AC 86 ms
12,288 KB
testcase_04 AC 197 ms
13,696 KB
testcase_05 WA -
testcase_06 AC 88 ms
12,288 KB
testcase_07 AC 88 ms
12,288 KB
testcase_08 AC 177 ms
13,312 KB
testcase_09 AC 185 ms
13,440 KB
testcase_10 AC 89 ms
12,288 KB
testcase_11 AC 88 ms
12,288 KB
testcase_12 AC 89 ms
12,288 KB
testcase_13 AC 87 ms
12,160 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 86 ms
12,160 KB
testcase_19 AC 89 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