結果

問題 No.1971 Easy Sudoku
ユーザー n_getn_get
提出日時 2022-07-12 12:16:40
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 170 bytes
コンパイル時間 39 ms
コンパイル使用メモリ 5,216 KB
実行使用メモリ 13,900 KB
最終ジャッジ日時 2023-09-05 12:17:24
合計ジャッジ時間 1,439 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
11,708 KB
testcase_01 AC 20 ms
12,212 KB
testcase_02 AC 26 ms
13,552 KB
testcase_03 AC 25 ms
13,132 KB
testcase_04 AC 27 ms
13,900 KB
testcase_05 AC 19 ms
12,160 KB
testcase_06 AC 18 ms
11,984 KB
testcase_07 AC 37 ms
13,748 KB
testcase_08 AC 20 ms
12,004 KB
testcase_09 AC 20 ms
12,148 KB
testcase_10 AC 25 ms
13,256 KB
testcase_11 AC 18 ms
11,916 KB
testcase_12 AC 18 ms
11,632 KB
testcase_13 AC 38 ms
13,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(define N (read))
(dotimes [i N]
         (dotimes [j N]
                  (display (+ 1 (remainder (+ i j) N)))
                  (display " "))
              (newline))
0