結果
問題 |
No.1971 Easy Sudoku
|
ユーザー |
![]() |
提出日時 | 2022-07-12 12:16:11 |
言語 | Scheme (Gauche-0.9.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 171 bytes |
コンパイル時間 | 97 ms |
コンパイル使用メモリ | 5,376 KB |
実行使用メモリ | 18,304 KB |
最終ジャッジ日時 | 2024-06-23 07:54:54 |
合計ジャッジ時間 | 1,968 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | RE * 1 |
other | RE * 13 |
ソースコード
(define N (read)) (dotimes [i N] (dotimes [j N] (display (+ 1 (remainder (+ i j) N))) (display " ")) (newline)))