結果

問題 No.1312 Snake Eyes
ユーザー roarisroaris
提出日時 2020-12-09 01:11:08
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 753 bytes
コンパイル時間 679 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 82,432 KB
最終ジャッジ日時 2024-09-18 22:40:33
合計ジャッジ時間 13,077 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
74,624 KB
testcase_01 AC 62 ms
75,312 KB
testcase_02 AC 69 ms
75,136 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 41 ms
51,456 KB
testcase_05 AC 54 ms
68,480 KB
testcase_06 AC 61 ms
75,392 KB
testcase_07 AC 55 ms
68,864 KB
testcase_08 AC 68 ms
75,136 KB
testcase_09 AC 56 ms
68,480 KB
testcase_10 AC 70 ms
75,764 KB
testcase_11 AC 60 ms
75,452 KB
testcase_12 AC 67 ms
75,264 KB
testcase_13 AC 74 ms
75,392 KB
testcase_14 AC 89 ms
75,428 KB
testcase_15 AC 67 ms
75,392 KB
testcase_16 AC 64 ms
75,136 KB
testcase_17 AC 83 ms
75,392 KB
testcase_18 AC 68 ms
75,264 KB
testcase_19 AC 63 ms
75,284 KB
testcase_20 AC 66 ms
75,392 KB
testcase_21 AC 72 ms
75,748 KB
testcase_22 AC 54 ms
69,120 KB
testcase_23 AC 146 ms
75,776 KB
testcase_24 AC 77 ms
75,392 KB
testcase_25 AC 67 ms
75,392 KB
testcase_26 AC 72 ms
75,392 KB
testcase_27 AC 69 ms
75,428 KB
testcase_28 AC 88 ms
75,580 KB
testcase_29 AC 66 ms
75,136 KB
testcase_30 AC 117 ms
75,988 KB
testcase_31 AC 99 ms
75,648 KB
testcase_32 AC 77 ms
75,392 KB
testcase_33 AC 52 ms
68,608 KB
testcase_34 AC 90 ms
75,640 KB
testcase_35 AC 69 ms
75,392 KB
testcase_36 AC 98 ms
75,584 KB
testcase_37 AC 86 ms
75,444 KB
testcase_38 AC 175 ms
76,288 KB
testcase_39 AC 82 ms
75,488 KB
testcase_40 AC 66 ms
75,520 KB
testcase_41 AC 135 ms
75,900 KB
testcase_42 AC 65 ms
75,392 KB
testcase_43 AC 78 ms
75,608 KB
testcase_44 AC 75 ms
75,924 KB
testcase_45 AC 91 ms
75,392 KB
testcase_46 AC 105 ms
75,648 KB
testcase_47 AC 75 ms
69,560 KB
testcase_48 AC 512 ms
76,032 KB
testcase_49 AC 186 ms
75,776 KB
testcase_50 AC 109 ms
76,176 KB
testcase_51 AC 106 ms
75,628 KB
testcase_52 AC 92 ms
76,032 KB
testcase_53 AC 144 ms
75,904 KB
testcase_54 AC 114 ms
75,648 KB
testcase_55 AC 84 ms
75,904 KB
testcase_56 AC 342 ms
75,776 KB
testcase_57 AC 86 ms
75,632 KB
testcase_58 AC 153 ms
76,432 KB
testcase_59 AC 176 ms
75,776 KB
testcase_60 AC 73 ms
75,648 KB
testcase_61 AC 152 ms
75,904 KB
testcase_62 AC 145 ms
76,068 KB
testcase_63 AC 77 ms
75,968 KB
testcase_64 AC 96 ms
75,392 KB
testcase_65 AC 66 ms
75,636 KB
testcase_66 AC 139 ms
75,896 KB
testcase_67 AC 87 ms
75,392 KB
testcase_68 AC 68 ms
75,392 KB
testcase_69 AC 89 ms
75,828 KB
testcase_70 AC 222 ms
75,776 KB
testcase_71 AC 147 ms
76,160 KB
testcase_72 AC 138 ms
75,900 KB
testcase_73 AC 78 ms
75,648 KB
testcase_74 AC 74 ms
75,372 KB
testcase_75 AC 77 ms
75,580 KB
testcase_76 TLE -
testcase_77 -- -
testcase_78 -- -
testcase_79 -- -
testcase_80 -- -
testcase_81 -- -
testcase_82 -- -
testcase_83 -- -
testcase_84 -- -
testcase_85 -- -
testcase_86 -- -
testcase_87 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def make_divs(n):
    divs = []
    
    for i in range(1, int(n**0.5)+1):
        if n%i==0:
            divs.append(i)
            
            if i!=n//i:
                divs.append(n//i)
    
    return divs
    
def binary_search():
    l, r = 2, 10**12+10
    
    while l<=r:
        m = (l+r)//2
        
        if (pow(m, k)-1)//(m-1)<=N//d:
            l = m+1
        else:
            r = m-1
    
    return r

N = int(input())

if N==1:
    print(2)
    exit()

if N==2:
    print(3)
    exit()
    
divs = make_divs(N)
ans = N-1

for d in divs:
    for k in range(1, 41):
        p = binary_search()
        
        if p>d and (pow(p, k)-1)//(p-1)==N//d:
            ans = min(ans, p)

print(ans)
0