結果

問題 No.1169 Row and Column and Diagonal
ユーザー horiesinitihoriesiniti
提出日時 2023-02-07 00:23:06
言語 Ruby
(3.3.0)
結果
AC  
実行時間 222 ms / 2,000 ms
コード長 397 bytes
コンパイル時間 108 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 14,208 KB
最終ジャッジ日時 2024-07-05 01:30:48
合計ジャッジ時間 3,622 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
12,160 KB
testcase_01 AC 85 ms
12,160 KB
testcase_02 AC 84 ms
12,160 KB
testcase_03 AC 89 ms
12,032 KB
testcase_04 AC 85 ms
12,160 KB
testcase_05 AC 84 ms
12,288 KB
testcase_06 AC 93 ms
12,672 KB
testcase_07 AC 110 ms
12,544 KB
testcase_08 AC 126 ms
12,800 KB
testcase_09 AC 146 ms
12,928 KB
testcase_10 AC 200 ms
13,824 KB
testcase_11 AC 210 ms
13,952 KB
testcase_12 AC 219 ms
14,080 KB
testcase_13 AC 221 ms
14,208 KB
testcase_14 AC 222 ms
14,080 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

#順列入れ替えの特徴を見るためにコードで遊んでます。奇数の時だけ上手くいくコードはできたが偶数が変だw
def f(n)
	as=[]
	n.times{
		as<<Array.new(n,0)
	}
	
	ps=[]
	
	ps=(1.step(n-1,2).to_a)+(0.step(n-1,2).to_a)

	n.times{|i|
		s=ps.index(i)
		n.times{|j|
			as[(i+j)%n][ps[(s+j)%n]]=i+1
		}
	}
	n.times{|y|
		puts as[y].join(" ")
	}
end
f(gets.to_i)
0