結果

問題 No.1383 Numbers of Product
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-02-07 22:17:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 873 ms / 2,000 ms
コード長 2,347 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 226,680 KB
最終ジャッジ日時 2024-11-22 23:22:00
合計ジャッジ時間 22,827 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,856 KB
testcase_01 AC 44 ms
54,392 KB
testcase_02 AC 45 ms
55,252 KB
testcase_03 AC 45 ms
54,676 KB
testcase_04 AC 43 ms
55,584 KB
testcase_05 AC 43 ms
55,632 KB
testcase_06 AC 44 ms
55,296 KB
testcase_07 AC 504 ms
160,796 KB
testcase_08 AC 466 ms
160,956 KB
testcase_09 AC 442 ms
194,056 KB
testcase_10 AC 844 ms
226,552 KB
testcase_11 AC 849 ms
226,512 KB
testcase_12 AC 873 ms
226,640 KB
testcase_13 AC 768 ms
226,560 KB
testcase_14 AC 654 ms
194,448 KB
testcase_15 AC 501 ms
160,936 KB
testcase_16 AC 853 ms
226,492 KB
testcase_17 AC 44 ms
56,032 KB
testcase_18 AC 45 ms
55,796 KB
testcase_19 AC 43 ms
54,732 KB
testcase_20 AC 43 ms
55,128 KB
testcase_21 AC 43 ms
54,720 KB
testcase_22 AC 44 ms
56,040 KB
testcase_23 AC 43 ms
55,004 KB
testcase_24 AC 42 ms
54,444 KB
testcase_25 AC 44 ms
54,928 KB
testcase_26 AC 43 ms
55,036 KB
testcase_27 AC 43 ms
56,184 KB
testcase_28 AC 58 ms
75,572 KB
testcase_29 AC 628 ms
194,500 KB
testcase_30 AC 863 ms
226,560 KB
testcase_31 AC 44 ms
55,276 KB
testcase_32 AC 146 ms
97,628 KB
testcase_33 AC 44 ms
56,148 KB
testcase_34 AC 49 ms
62,164 KB
testcase_35 AC 578 ms
209,564 KB
testcase_36 AC 707 ms
209,616 KB
testcase_37 AC 840 ms
226,296 KB
testcase_38 AC 856 ms
226,340 KB
testcase_39 AC 654 ms
226,420 KB
testcase_40 AC 640 ms
226,340 KB
testcase_41 AC 780 ms
226,400 KB
testcase_42 AC 826 ms
226,672 KB
testcase_43 AC 840 ms
226,300 KB
testcase_44 AC 676 ms
226,444 KB
testcase_45 AC 802 ms
226,616 KB
testcase_46 AC 44 ms
55,124 KB
testcase_47 AC 815 ms
226,680 KB
testcase_48 AC 805 ms
226,364 KB
testcase_49 AC 815 ms
226,476 KB
testcase_50 AC 843 ms
226,620 KB
testcase_51 AC 43 ms
55,684 KB
testcase_52 AC 45 ms
54,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

Aで場合分けしたい!!
AはX以下

Bはあまり大きくならない
Bに関してAを二分探索


B = 1の時
A * (A+K) がすでに多いのが嫌だ

B = 2以上の場合は
列挙可能

列挙した後、M個の奴 or M-1個のやつに関して
B=1があるかを判定すればよい
Aを二分探索すれば見つかる
M = 1の場合だけ嫌だな

別で処理する

A*(A+K)の中で、バッティングした数を覚えておく
それ以外の A*(A+K)

"""

import sys
import heapq
from collections import deque
from sys import stdin

def want(A,B):
    ret = A
    for i in range(B):
        ret *= A + (i+1)*K
    return ret

dic = {}
N,K,M = map(int,stdin.readline().split())

if M != 1:

    # B >= 2 の全列挙
    for B in range(2,22):
        for A in range(1,10**9):
            X = want(A,B)
            if X <= N:
                if X not in dic:
                    dic[X] = 1
                else:
                    dic[X] += 1
            else:
                break

    ans = 0
    #B = 1があるかを検索

    for X in dic:
        
        if M-1 <= dic[X] <= M:

            l = int( (K**2+4*X)**0.5-K ) // 2
            
            for i in range(5):
                if l*(l+K) == X:
                    dic[X] += 1
                    break
                l += 1

            if dic[X] == M:
                ans += 1

    print (ans)

else: #M==1の場合

    # B >= 2 の全列挙
    for B in range(2,22):
        for A in range(1,10**9):
            X = want(A,B)
            if X <= N:
                if X not in dic:
                    dic[X] = 1
                else:
                    dic[X] += 1
            else:
                break

    ans = 0
    bat = 0
    
    #B = 1があるかを検索
    #print (dic)

    for X in dic:
        
        l = 0
        r = X+10

        l = int( (K**2+4*X)**0.5-K ) // 2

        for i in range(5):
            if l*(l+K) == X:
                dic[X] += 1
                bat += 1
                break
            l += 1

        if dic[X] == M:
            ans += 1

    #print (ans,bat,file=sys.stderr)
    
    #有効な最大のAを求める
    l = 0
    r = 10**18
    while r-l != 1:
        m = (l+r)//2
        if m * (m+K) <= N:
            l = m
        else:
            r = m

    ans += l - bat
    print (ans)
0