結果

問題 No.401 数字の渦巻き
ユーザー shi-moshi-mo
提出日時 2016-10-24 19:08:57
言語 Ruby
(3.3.0)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 643 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-05-03 05:26:34
合計ジャッジ時間 3,942 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
12,160 KB
testcase_01 AC 94 ms
12,032 KB
testcase_02 AC 93 ms
12,160 KB
testcase_03 AC 92 ms
12,288 KB
testcase_04 AC 96 ms
12,416 KB
testcase_05 AC 96 ms
12,160 KB
testcase_06 AC 93 ms
12,288 KB
testcase_07 AC 92 ms
12,288 KB
testcase_08 AC 90 ms
12,160 KB
testcase_09 AC 92 ms
12,160 KB
testcase_10 AC 93 ms
12,032 KB
testcase_11 AC 92 ms
12,160 KB
testcase_12 AC 94 ms
12,160 KB
testcase_13 AC 93 ms
12,160 KB
testcase_14 AC 94 ms
12,288 KB
testcase_15 AC 93 ms
12,160 KB
testcase_16 AC 91 ms
12,160 KB
testcase_17 AC 92 ms
12,032 KB
testcase_18 AC 93 ms
12,288 KB
testcase_19 AC 93 ms
12,160 KB
testcase_20 AC 92 ms
12,160 KB
testcase_21 AC 94 ms
12,160 KB
testcase_22 AC 92 ms
12,416 KB
testcase_23 AC 94 ms
12,160 KB
testcase_24 AC 94 ms
12,032 KB
testcase_25 AC 95 ms
12,288 KB
testcase_26 AC 94 ms
12,160 KB
testcase_27 AC 97 ms
12,160 KB
testcase_28 AC 98 ms
12,032 KB
testcase_29 AC 97 ms
12,032 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