結果

問題 No.1831 Parasol
ユーザー convexineqconvexineq
提出日時 2022-02-12 07:37:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 263 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 81,824 KB
実行使用メモリ 77,480 KB
最終ジャッジ日時 2024-06-28 08:53:56
合計ジャッジ時間 2,515 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,884 KB
testcase_01 AC 77 ms
77,480 KB
testcase_02 AC 38 ms
52,616 KB
testcase_03 AC 38 ms
52,332 KB
testcase_04 AC 76 ms
76,908 KB
testcase_05 AC 39 ms
51,996 KB
testcase_06 AC 39 ms
52,024 KB
testcase_07 AC 75 ms
77,132 KB
testcase_08 AC 38 ms
52,876 KB
testcase_09 AC 39 ms
52,348 KB
testcase_10 AC 69 ms
76,904 KB
testcase_11 AC 76 ms
77,252 KB
testcase_12 AC 62 ms
76,264 KB
testcase_13 AC 75 ms
77,312 KB
testcase_14 AC 50 ms
64,104 KB
testcase_15 AC 54 ms
69,844 KB
testcase_16 AC 39 ms
53,168 KB
testcase_17 AC 41 ms
54,176 KB
testcase_18 AC 53 ms
67,668 KB
testcase_19 AC 38 ms
52,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
r = [[] for _ in range(n)]
W = 2*n-1
for i in range(n-1):
    v = W-i
    r[i].extend([v]*v)
    r[i].extend([W-v+2]*(W-v))
for i in range(3,W-v+3)[::-1]:
    r[-1].extend([i]*2)
r[-1].extend([2,2,1])

print(W)
for lst in zip(*r):
    print(*lst)
0