結果

問題 No.1831 Parasol
ユーザー shotoyooshotoyoo
提出日時 2022-02-04 23:43:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 645 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 73,472 KB
最終ジャッジ日時 2024-06-11 13:04:19
合計ジャッジ時間 2,894 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,224 KB
testcase_01 AC 62 ms
73,216 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 39 ms
52,224 KB
testcase_04 AC 64 ms
73,472 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 39 ms
51,712 KB
testcase_07 AC 61 ms
72,448 KB
testcase_08 AC 38 ms
52,224 KB
testcase_09 AC 37 ms
52,096 KB
testcase_10 AC 59 ms
69,376 KB
testcase_11 AC 61 ms
72,960 KB
testcase_12 AC 51 ms
65,152 KB
testcase_13 AC 59 ms
72,192 KB
testcase_14 AC 46 ms
60,672 KB
testcase_15 AC 48 ms
62,080 KB
testcase_16 AC 38 ms
52,096 KB
testcase_17 AC 38 ms
52,480 KB
testcase_18 AC 48 ms
61,952 KB
testcase_19 AC 37 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

write = lambda x: sys.stdout.write(x+"\n"); writef = lambda x: print("{:.12f}".format(x))
debug = lambda x: sys.stderr.write(x+"\n")
YES="Yes"; NO="No"; pans = lambda v: print(YES if v else NO)
LI = lambda : list(map(int, input().split()))
sys.setrecursionlimit(3*10**5+10)

n = int(input())
ans = [[0]*n for _ in range(2*n-1)]
for i in range(n):
    for j in range(n+i):
        ans[j][i] = n+i
for i in range(n):
    ans[i][0] = i+1
for i in range(n, 2*n-1):
    for j in range(2*n-1-i):
        ans[i+j][j] = 2*n-i
print(len(ans))
for item in ans:
    write(" ".join(map(str, item)))
0