結果

問題 No.2339 Factorial Paths
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2023-06-02 23:13:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 176 ms / 2,000 ms
コード長 1,100 bytes
コンパイル時間 1,475 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 100,796 KB
最終ジャッジ日時 2024-06-09 01:16:07
合計ジャッジ時間 9,620 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,888 KB
testcase_01 AC 45 ms
54,144 KB
testcase_02 AC 42 ms
53,760 KB
testcase_03 AC 41 ms
53,504 KB
testcase_04 AC 41 ms
53,632 KB
testcase_05 AC 41 ms
53,632 KB
testcase_06 AC 47 ms
54,016 KB
testcase_07 AC 43 ms
54,400 KB
testcase_08 AC 42 ms
54,252 KB
testcase_09 AC 46 ms
55,040 KB
testcase_10 AC 52 ms
60,928 KB
testcase_11 AC 50 ms
62,208 KB
testcase_12 AC 57 ms
63,360 KB
testcase_13 AC 64 ms
66,432 KB
testcase_14 AC 65 ms
69,376 KB
testcase_15 AC 111 ms
86,020 KB
testcase_16 AC 126 ms
90,376 KB
testcase_17 AC 160 ms
98,304 KB
testcase_18 AC 165 ms
100,224 KB
testcase_19 AC 164 ms
99,968 KB
testcase_20 AC 174 ms
100,224 KB
testcase_21 AC 172 ms
100,604 KB
testcase_22 AC 176 ms
100,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

4000 C 2000 通りが最大である


2N C N

"""

import sys
from sys import stdin
from collections import deque

N = int(stdin.readline())

if N == 1:
    print (1,1)
    print (".")
    sys.exit()

lis = []

q = deque([N])

while q:

    v = q.popleft()

    if v == 1:
        continue
    elif v == 2:
        lis.append( (2,2) )
    else:
        a = v // 2
        b = v - a

        lis.append( (a+1,b+1) )

        q.append( a )
        q.append( b )

s = 0
for a,b in lis:

    s += min(a,b)

H = 1
W = 1

for a,b in lis:

    a,b = min(a,b),max(b,a)

    if H >= W:
        H += a-1
        W += b-1
    else:
        H += b-1
        W += a-1

ans = [ ["#"] * W for i in range(H) ]

H = 1
W = 1

for a,b in lis:

    a,b = min(a,b),max(b,a)

    if H >= W:
        for i in range(a):
            for j in range(b):
                ans[H-1+i][W-1+j] = "."
        H += a-1
        W += b-1
    else:
        for j in range(a):
            for i in range(b):
                ans[H-1+i][W-1+j] = "."
        H += b-1
        W += a-1

print (H,W)
for i in ans:
    print ("".join(i))
0