結果

問題 No.1169 Row and Column and Diagonal
ユーザー pluto77pluto77
提出日時 2020-10-07 13:19:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 128 bytes
コンパイル時間 77 ms
コンパイル使用メモリ 10,716 KB
実行使用メモリ 8,332 KB
最終ジャッジ日時 2023-09-27 09:16:04
合計ジャッジ時間 2,879 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
7,808 KB
testcase_01 AC 15 ms
7,704 KB
testcase_02 AC 16 ms
7,812 KB
testcase_03 AC 16 ms
7,724 KB
testcase_04 AC 15 ms
7,776 KB
testcase_05 AC 16 ms
7,696 KB
testcase_06 AC 23 ms
8,220 KB
testcase_07 AC 33 ms
8,256 KB
testcase_08 AC 45 ms
8,220 KB
testcase_09 AC 59 ms
8,232 KB
testcase_10 AC 96 ms
8,140 KB
testcase_11 AC 102 ms
8,188 KB
testcase_12 AC 106 ms
8,164 KB
testcase_13 AC 107 ms
8,332 KB
testcase_14 AC 108 ms
8,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki1169
n=int(input())
l=[1]
for i in range(n-1):
 l.append(n-i)
for i in range(n):
 print(*l)
 if n>2:
  l=l[n-2:n]+l[:n-2]
 
0