結果

問題 No.1971 Easy Sudoku
ユーザー maimai
提出日時 2022-06-10 22:17:23
言語 Ruby
(3.3.0)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 59 bytes
コンパイル時間 396 ms
コンパイル使用メモリ 11,932 KB
実行使用メモリ 16,404 KB
最終ジャッジ日時 2023-10-21 05:20:48
合計ジャッジ時間 2,853 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
16,084 KB
testcase_01 AC 73 ms
16,196 KB
testcase_02 AC 82 ms
16,208 KB
testcase_03 AC 75 ms
16,208 KB
testcase_04 AC 75 ms
16,208 KB
testcase_05 AC 78 ms
16,084 KB
testcase_06 AC 73 ms
16,084 KB
testcase_07 AC 76 ms
16,344 KB
testcase_08 AC 75 ms
16,084 KB
testcase_09 AC 73 ms
16,192 KB
testcase_10 AC 76 ms
16,208 KB
testcase_11 AC 78 ms
16,084 KB
testcase_12 AC 76 ms
16,084 KB
testcase_13 AC 81 ms
16,404 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n=gets.to_i
puts n.times.map{|i| (1..n).to_a.rotate(i)*' '}
0