結果
問題 | No.1399 すごろくで世界旅行 (構築) |
ユーザー | siman |
提出日時 | 2022-06-17 01:02:18 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 297 bytes |
コンパイル時間 | 582 ms |
コンパイル使用メモリ | 7,296 KB |
実行使用メモリ | 25,088 KB |
最終ジャッジ日時 | 2024-10-07 11:21:27 |
合計ジャッジ時間 | 24,352 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 77 ms
12,416 KB |
testcase_02 | AC | 80 ms
12,160 KB |
testcase_03 | AC | 79 ms
12,032 KB |
testcase_04 | AC | 82 ms
12,160 KB |
testcase_05 | AC | 77 ms
12,160 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 82 ms
12,032 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 78 ms
12,288 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 530 ms
24,704 KB |
コンパイルメッセージ
Syntax OK
ソースコード
V, D = gets.split.map(&:to_i) ans = Array.new(V) { Array.new(V, 0) } V.times do |i| ans[i][i] = 1 ans[i][(i + 1) % V] = 1 cur = i d = D (V - 1).times do |j| cur = (cur + 1) % V d -= 1 if d < 0 ans[i][cur] = 1 d = D - 1 end end end puts ans.map(&:join)