結果

問題 No.2339 Factorial Paths
ユーザー hir355hir355
提出日時 2023-06-02 22:42:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 336 ms / 2,000 ms
コード長 644 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 107,004 KB
最終ジャッジ日時 2024-06-09 00:26:20
合計ジャッジ時間 10,127 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 38 ms
52,480 KB
testcase_04 AC 39 ms
52,224 KB
testcase_05 AC 40 ms
52,608 KB
testcase_06 AC 41 ms
52,480 KB
testcase_07 AC 38 ms
53,120 KB
testcase_08 AC 45 ms
62,336 KB
testcase_09 AC 52 ms
65,408 KB
testcase_10 AC 59 ms
72,064 KB
testcase_11 AC 67 ms
77,796 KB
testcase_12 AC 71 ms
78,464 KB
testcase_13 AC 82 ms
80,180 KB
testcase_14 AC 103 ms
82,920 KB
testcase_15 AC 162 ms
89,956 KB
testcase_16 AC 250 ms
97,884 KB
testcase_17 AC 307 ms
104,616 KB
testcase_18 AC 326 ms
106,248 KB
testcase_19 AC 319 ms
106,504 KB
testcase_20 AC 336 ms
106,772 KB
testcase_21 AC 336 ms
106,396 KB
testcase_22 AC 331 ms
107,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
if n == 1:
    print(1, 1)
    print('.')
    exit(0)
l = []
st = [n]
h, w = 1, 1
while st:
    p = st.pop()
    if p == 1:
        continue
    st.append(p // 2)
    st.append((p + 1) // 2)
    if h < w:
        l.append((p // 2, (p + 1) // 2))
        h += p // 2 + 1
        w += (p + 1) // 2 + 1
    else:
        l.append(((p + 1) // 2, p // 2))
        w += p // 2
        h += (p + 1) // 2
s = [['#'] * w for _ in range(h)]
p, q = 0, 0
for x, y in l:
    for j in range(p, p + x + 1):
        for k in range(q, q + y + 1):
            s[j][k] = '.'
    p += x
    q += y
print(h, w)
for row in s:
    print(*row, sep='')
0