結果

問題 No.1106 🦉 何事もバランスが大事
ユーザー qumazakiqumazaki
提出日時 2020-07-04 04:11:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 1,065 bytes
コンパイル時間 563 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 73,824 KB
最終ジャッジ日時 2024-09-17 09:27:25
合計ジャッジ時間 7,279 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
65,020 KB
testcase_01 AC 49 ms
64,480 KB
testcase_02 AC 50 ms
65,036 KB
testcase_03 AC 54 ms
65,976 KB
testcase_04 AC 58 ms
69,020 KB
testcase_05 AC 49 ms
63,360 KB
testcase_06 AC 49 ms
65,324 KB
testcase_07 AC 49 ms
64,520 KB
testcase_08 AC 48 ms
64,280 KB
testcase_09 AC 53 ms
65,348 KB
testcase_10 AC 55 ms
67,092 KB
testcase_11 AC 58 ms
69,152 KB
testcase_12 AC 59 ms
69,120 KB
testcase_13 AC 62 ms
70,236 KB
testcase_14 AC 61 ms
70,448 KB
testcase_15 AC 60 ms
69,808 KB
testcase_16 AC 60 ms
69,724 KB
testcase_17 AC 60 ms
70,820 KB
testcase_18 AC 59 ms
69,300 KB
testcase_19 AC 60 ms
69,424 KB
testcase_20 AC 65 ms
71,304 KB
testcase_21 AC 61 ms
69,372 KB
testcase_22 AC 60 ms
69,756 KB
testcase_23 AC 62 ms
69,072 KB
testcase_24 AC 59 ms
68,760 KB
testcase_25 AC 62 ms
71,792 KB
testcase_26 AC 62 ms
71,072 KB
testcase_27 AC 64 ms
72,256 KB
testcase_28 AC 62 ms
69,348 KB
testcase_29 AC 56 ms
67,516 KB
testcase_30 AC 58 ms
69,084 KB
testcase_31 AC 56 ms
67,644 KB
testcase_32 AC 62 ms
70,204 KB
testcase_33 AC 62 ms
69,896 KB
testcase_34 AC 61 ms
69,568 KB
testcase_35 AC 61 ms
70,872 KB
testcase_36 AC 60 ms
69,020 KB
testcase_37 AC 62 ms
72,272 KB
testcase_38 AC 57 ms
68,412 KB
testcase_39 AC 55 ms
68,580 KB
testcase_40 AC 63 ms
71,168 KB
testcase_41 AC 56 ms
67,628 KB
testcase_42 AC 54 ms
68,192 KB
testcase_43 AC 54 ms
68,240 KB
testcase_44 AC 56 ms
67,716 KB
testcase_45 AC 55 ms
68,196 KB
testcase_46 AC 60 ms
70,372 KB
testcase_47 AC 60 ms
69,252 KB
testcase_48 AC 62 ms
71,952 KB
testcase_49 AC 68 ms
73,824 KB
testcase_50 AC 57 ms
68,372 KB
testcase_51 AC 50 ms
65,732 KB
testcase_52 AC 58 ms
68,060 KB
testcase_53 AC 61 ms
71,112 KB
testcase_54 AC 57 ms
69,364 KB
testcase_55 AC 60 ms
69,500 KB
testcase_56 AC 61 ms
70,048 KB
testcase_57 AC 60 ms
70,264 KB
testcase_58 AC 62 ms
70,028 KB
testcase_59 AC 56 ms
67,148 KB
testcase_60 AC 62 ms
69,592 KB
testcase_61 AC 60 ms
70,172 KB
testcase_62 AC 55 ms
68,344 KB
testcase_63 AC 56 ms
68,736 KB
testcase_64 AC 60 ms
69,644 KB
testcase_65 AC 55 ms
68,004 KB
testcase_66 AC 58 ms
69,476 KB
testcase_67 AC 60 ms
70,404 KB
testcase_68 AC 61 ms
69,644 KB
testcase_69 AC 61 ms
69,904 KB
testcase_70 AC 60 ms
70,444 KB
testcase_71 AC 61 ms
69,448 KB
testcase_72 AC 58 ms
69,660 KB
testcase_73 AC 61 ms
70,044 KB
testcase_74 AC 56 ms
68,924 KB
testcase_75 AC 54 ms
67,704 KB
testcase_76 AC 59 ms
68,880 KB
testcase_77 AC 59 ms
69,388 KB
testcase_78 AC 58 ms
68,880 KB
testcase_79 AC 58 ms
68,912 KB
testcase_80 AC 59 ms
69,068 KB
testcase_81 AC 58 ms
69,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
m = 27

base = [2] * m
lim_up = [2] * m
# lim_down = [2] * m
x = n
for i in range(m):
    x += 2
    lim_up[i] = x%5
    # lim_down[i] = 4 - lim_up[i]
    x //= 5

lim_up = lim_up[::-1]

# dp[i][j] *= i桁目まで見て、各桁の合計数がjのやつの個数
dp_0 = [[0]*(m*4+1) for _ in range(m+1)]
dp = [[0]*(m*4+1) for _ in range(m+1)]
dp_lim = [[0]*(m*4+1) for _ in range(m+1)]

dp_0[0][0] = 1
dp_lim[0][0] = 1

phase = 0
for i in range(1,m+1):
    dp_0[i][i*2] = 1
    lim_j = sum(lim_up[:i])
    dp_lim[i][lim_j] = 1
    if(lim_j != i*2)&(phase==0):
        phase = 1

    for j in range(m*4+1):
        dp[i][j] = sum(dp[i-1][max(0,j-4):j+1])
        if(phase==1):
            for k in range(3,lim_up[i-1]):
                dp[i][j] += dp_lim[i-1][j-k]
        elif(phase==2):
            for k in range(lim_up[i-1]):
                dp[i][j] += dp_lim[i-1][j-k]
            for k in range(3,5):
                dp[i][j] += dp_0[i-1][j-k]

    if(lim_j != i*2)&(phase==1):
        phase = 2

ans = dp[i][2*m] + dp_lim[i][2*m]
print(ans)
0