結果

問題 No.1587 012 Matrix
ユーザー simansiman
提出日時 2021-07-15 04:05:48
言語 Ruby
(3.3.0)
結果
AC  
実行時間 195 ms / 1,000 ms
コード長 242 bytes
コンパイル時間 45 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 16,512 KB
最終ジャッジ日時 2024-07-04 04:01:13
合計ジャッジ時間 4,335 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
12,160 KB
testcase_01 AC 94 ms
12,032 KB
testcase_02 AC 93 ms
12,160 KB
testcase_03 AC 94 ms
12,032 KB
testcase_04 AC 94 ms
12,032 KB
testcase_05 AC 94 ms
12,288 KB
testcase_06 AC 97 ms
12,160 KB
testcase_07 AC 95 ms
12,032 KB
testcase_08 AC 96 ms
12,032 KB
testcase_09 AC 96 ms
12,160 KB
testcase_10 AC 99 ms
12,032 KB
testcase_11 AC 100 ms
12,160 KB
testcase_12 AC 111 ms
12,544 KB
testcase_13 AC 122 ms
13,056 KB
testcase_14 AC 132 ms
13,824 KB
testcase_15 AC 148 ms
14,464 KB
testcase_16 AC 162 ms
15,104 KB
testcase_17 AC 176 ms
16,000 KB
testcase_18 AC 185 ms
16,128 KB
testcase_19 AC 190 ms
16,512 KB
testcase_20 AC 192 ms
16,384 KB
testcase_21 AC 195 ms
16,384 KB
testcase_22 AC 90 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i

if N.odd?
  puts 'No'
  exit
end

ans = Array.new(N) { Array.new(N, 0) }

N.times do |y|
  if y < N / 2
    ans[y][N - y - 1] = 1
  end

  (N - y).upto(N - 1) do |x|
    ans[y][x] = 2
  end
end

puts ans.map { |row| row.join }
0