結果

問題 No.2339 Factorial Paths
ユーザー sotanishysotanishy
提出日時 2023-06-02 23:07:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 155 ms / 2,000 ms
コード長 515 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 108,796 KB
最終ジャッジ日時 2024-06-09 01:08:50
合計ジャッジ時間 8,646 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
90,024 KB
testcase_01 AC 70 ms
90,368 KB
testcase_02 AC 68 ms
90,368 KB
testcase_03 AC 70 ms
90,368 KB
testcase_04 AC 70 ms
90,780 KB
testcase_05 AC 72 ms
90,368 KB
testcase_06 AC 71 ms
90,692 KB
testcase_07 AC 68 ms
90,464 KB
testcase_08 AC 70 ms
90,624 KB
testcase_09 AC 74 ms
90,880 KB
testcase_10 AC 77 ms
91,104 KB
testcase_11 AC 94 ms
108,008 KB
testcase_12 AC 92 ms
107,640 KB
testcase_13 AC 98 ms
107,668 KB
testcase_14 AC 102 ms
108,032 KB
testcase_15 AC 118 ms
108,416 KB
testcase_16 AC 135 ms
108,796 KB
testcase_17 AC 149 ms
108,444 KB
testcase_18 AC 151 ms
108,672 KB
testcase_19 AC 154 ms
108,476 KB
testcase_20 AC 155 ms
108,544 KB
testcase_21 AC 153 ms
108,544 KB
testcase_22 AC 145 ms
108,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import lru_cache
import sys
input = sys.stdin.readline


N = int(input())
M = 2000
grid = [[1] * M for _ in range(M)]
grid[0][0]=0


def f(N, i, j):
    if N == 1:
        return i, j
    h = N//2
    w = N-h
    for k in range(h+1):
        for l in range(w+1):
            grid[i+k][j+l] = 0
    i += h
    j += w
    i, j = f(h, i, j)
    i, j = f(w, i, j)
    return i, j


i, j = f(N, 0, 0)
H = i + 1
W = j + 1
print(H, W)
for row in grid[:H]:
    print("".join(map(lambda x: ".#"[x], row[:W])))
0