結果

問題 No.1831 Parasol
ユーザー puznekopuzneko
提出日時 2022-03-04 00:57:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 567 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 77,692 KB
最終ジャッジ日時 2024-07-17 21:32:28
合計ジャッジ時間 2,359 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,236 KB
testcase_01 AC 63 ms
77,608 KB
testcase_02 AC 32 ms
53,052 KB
testcase_03 AC 32 ms
52,904 KB
testcase_04 AC 60 ms
77,692 KB
testcase_05 AC 32 ms
52,404 KB
testcase_06 AC 33 ms
52,788 KB
testcase_07 AC 69 ms
77,372 KB
testcase_08 AC 34 ms
52,264 KB
testcase_09 AC 33 ms
52,464 KB
testcase_10 AC 53 ms
74,300 KB
testcase_11 AC 65 ms
77,388 KB
testcase_12 AC 46 ms
68,628 KB
testcase_13 AC 60 ms
77,296 KB
testcase_14 AC 42 ms
61,900 KB
testcase_15 AC 45 ms
64,488 KB
testcase_16 AC 34 ms
52,608 KB
testcase_17 AC 36 ms
53,484 KB
testcase_18 AC 49 ms
63,500 KB
testcase_19 AC 33 ms
52,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
upto = n*2-1
nokorimin = 1
ans = []
for i in range(n-1):
    next = [i for i in range(upto,n*2)]
    ind = nokorimin
    while ind < upto:
        next.append(ind)
        ind += 2
    ans.append(next)
    next = [i for i in range(upto,n*2)]
    ind = nokorimin + 1
    while ind < upto:
        next.append(ind)
        ind += 2
    ans.append(next)
    upto -= 1
    nokorimin += 1

next = [i for i in range(upto,n*2)]
ans.append(next)

print("{}".format(n*2-1))
for j in range(n*2-1):
    L=[str(i) for i in ans[j]]
    L=' '.join(L)
    print(L)
0