結果

問題 No.401 数字の渦巻き
ユーザー shi-moshi-mo
提出日時 2016-10-24 19:08:57
言語 Ruby
(3.3.0)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 643 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 11,300 KB
実行使用メモリ 15,336 KB
最終ジャッジ日時 2023-08-15 18:36:55
合計ジャッジ時間 3,693 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
15,272 KB
testcase_01 AC 77 ms
15,080 KB
testcase_02 AC 78 ms
15,140 KB
testcase_03 AC 77 ms
15,140 KB
testcase_04 AC 78 ms
15,336 KB
testcase_05 AC 79 ms
15,224 KB
testcase_06 AC 82 ms
15,084 KB
testcase_07 AC 79 ms
15,104 KB
testcase_08 AC 79 ms
15,084 KB
testcase_09 AC 78 ms
15,028 KB
testcase_10 AC 78 ms
15,168 KB
testcase_11 AC 78 ms
15,224 KB
testcase_12 AC 78 ms
15,148 KB
testcase_13 AC 78 ms
15,156 KB
testcase_14 AC 80 ms
15,224 KB
testcase_15 AC 80 ms
15,128 KB
testcase_16 AC 79 ms
15,156 KB
testcase_17 AC 79 ms
15,148 KB
testcase_18 AC 79 ms
15,276 KB
testcase_19 AC 81 ms
15,312 KB
testcase_20 AC 84 ms
15,308 KB
testcase_21 AC 86 ms
15,152 KB
testcase_22 AC 86 ms
15,140 KB
testcase_23 AC 84 ms
15,140 KB
testcase_24 AC 82 ms
15,024 KB
testcase_25 AC 80 ms
15,216 KB
testcase_26 AC 82 ms
15,156 KB
testcase_27 AC 80 ms
15,104 KB
testcase_28 AC 79 ms
15,320 KB
testcase_29 AC 80 ms
15,272 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.to_i

if 1 == n
  puts '001'
  exit 0
end

def next_pos(i, j, phase)
  case phase % 4
  when 0
    [i, j+1]
  when 1
    [i+1, j]
  when 2
    [i, j-1]
  when 3
    [i-1, j]
  end
end

def include_pos?(i, j, n)
  0 <= i && i < n && 0 <= j && j < n
end

a = Array.new(n){ Array.new(n) }
i, j = 0, 0
phase = 0
1.upto(n*n) do |k|
  a[i][j] = k

  next_i, next_j = next_pos(i, j, phase)
  if !include_pos?(next_i, next_j, n) || a[next_i][next_j]
    phase += 1
    next_i, next_j = next_pos(i, j, phase)
    break if a[next_i][next_j]
  end
  i, j = next_i, next_j
end

a.each do |row|
  puts row.map{|v| sprintf "%03d", v }.join(' ')
end
0