結果

問題 No.2339 Factorial Paths
ユーザー Shinya FujitaShinya Fujita
提出日時 2024-12-05 02:15:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 377 ms / 2,000 ms
コード長 480 bytes
コンパイル時間 426 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 234,752 KB
最終ジャッジ日時 2024-12-05 02:15:32
合計ジャッジ時間 30,598 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 342 ms
234,624 KB
testcase_01 AC 342 ms
234,368 KB
testcase_02 AC 341 ms
234,112 KB
testcase_03 AC 377 ms
234,228 KB
testcase_04 AC 375 ms
233,984 KB
testcase_05 AC 372 ms
234,112 KB
testcase_06 AC 377 ms
234,240 KB
testcase_07 AC 342 ms
234,240 KB
testcase_08 AC 342 ms
234,368 KB
testcase_09 AC 345 ms
234,240 KB
testcase_10 AC 345 ms
234,368 KB
testcase_11 AC 343 ms
234,112 KB
testcase_12 AC 346 ms
234,368 KB
testcase_13 AC 349 ms
234,368 KB
testcase_14 AC 346 ms
234,752 KB
testcase_15 AC 351 ms
234,624 KB
testcase_16 AC 346 ms
234,624 KB
testcase_17 AC 348 ms
234,368 KB
testcase_18 AC 349 ms
234,752 KB
testcase_19 AC 349 ms
234,112 KB
testcase_20 AC 348 ms
234,240 KB
testcase_21 AC 346 ms
234,240 KB
testcase_22 AC 350 ms
234,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
H = W = 2000
S = [list('#'*W) for _ in range(H)]
stack = [N]
x = y = 0
while stack:
    n = stack.pop()
    n1 = n // 2
    n2 = n - n1
    for i in range(x, x+n1+1):
        for j in range(y, y+n2+1):
            S[i][j] = '.'
    x += n1
    y += n2
    if n1 > 1:
        stack.append(n1)
    if n2 > 1:
        stack.append(n2)

for i in range(x, H):
    S[i][y] = '.'

for i in range(y, W):
    S[-1][i] = '.'

print(H, W)
for s in S:
    print(''.join(s))

0