結果
| 問題 | No.1169 Row and Column and Diagonal |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-08-14 21:40:02 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 159 ms / 2,000 ms |
| + 751µs | |
| コード長 | 150 bytes |
| 記録 | |
| コンパイル時間 | 57 ms |
| コンパイル使用メモリ | 15,104 KB |
| 実行使用メモリ | 17,024 KB |
| 最終ジャッジ日時 | 2026-09-13 06:34:18 |
| 合計ジャッジ時間 | 2,455 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 13 |
ソースコード
n=int(input()) a=[[-1]*n for i in range(n)] for i in range(n): now=i*2%n for j in range(n): a[j][now]=i+1 now-=1 now%=n for x in a: print(*x)