結果

問題 No.1169 Row and Column and Diagonal
ユーザー gemmarogemmaro
提出日時 2020-10-23 09:41:12
言語 Ruby
(3.3.0)
結果
AC  
実行時間 238 ms / 2,000 ms
コード長 227 bytes
コンパイル時間 69 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 14,720 KB
最終ジャッジ日時 2024-07-21 09:51:46
合計ジャッジ時間 3,752 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
12,032 KB
testcase_01 AC 78 ms
12,288 KB
testcase_02 AC 77 ms
12,160 KB
testcase_03 AC 77 ms
12,160 KB
testcase_04 AC 75 ms
12,160 KB
testcase_05 AC 74 ms
12,160 KB
testcase_06 AC 86 ms
12,544 KB
testcase_07 AC 104 ms
12,544 KB
testcase_08 AC 122 ms
12,800 KB
testcase_09 AC 145 ms
13,440 KB
testcase_10 AC 206 ms
14,208 KB
testcase_11 AC 221 ms
14,464 KB
testcase_12 AC 225 ms
14,720 KB
testcase_13 AC 238 ms
14,720 KB
testcase_14 AC 237 ms
14,592 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

# frozen_string_literal: true

def solve
  (1..N).map do |i|
    (1..N).map { |j| i.f(j) }.join(' ')
  end
end

class Integer
  def f(x)
    ((2 * self - x) % N).then { |y| y.zero? ? N : y }
  end
end

N = gets.to_i
puts solve
0