結果

問題 No.1831 Parasol
ユーザー 👑 rin204rin204
提出日時 2022-02-05 18:49:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 349 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 78,208 KB
最終ジャッジ日時 2024-06-11 13:38:34
合計ジャッジ時間 2,600 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 98 ms
78,080 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 90 ms
78,208 KB
testcase_05 AC 37 ms
51,712 KB
testcase_06 AC 36 ms
52,352 KB
testcase_07 AC 84 ms
77,440 KB
testcase_08 AC 38 ms
52,352 KB
testcase_09 AC 41 ms
52,480 KB
testcase_10 AC 88 ms
77,440 KB
testcase_11 AC 89 ms
77,568 KB
testcase_12 AC 73 ms
76,672 KB
testcase_13 AC 87 ms
77,568 KB
testcase_14 AC 56 ms
65,280 KB
testcase_15 AC 63 ms
71,552 KB
testcase_16 AC 40 ms
52,480 KB
testcase_17 AC 40 ms
52,352 KB
testcase_18 AC 63 ms
69,632 KB
testcase_19 AC 37 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
print(2 * n - 1)
lst = [[] for _ in range(n)]

for i in range(n - 1):
    i1 = i + 1
    i2 = 2 * n - 1 - i1
    if i % 2 == 0:
        i1, i2 = i2, i1
    for _ in range(i1):
        lst[i].append(i1)
    for _ in range(i2):
        lst[i].append(i2)
    
lst[-1] = [2 * n - 1] * (2 * n - 1)

for row in zip(*lst):
    print(*row)
0