結果

問題 No.1312 Snake Eyes
ユーザー H20H20
提出日時 2020-12-10 10:57:12
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 999 bytes
コンパイル時間 394 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 81,920 KB
最終ジャッジ日時 2024-09-19 18:45:14
合計ジャッジ時間 13,020 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
75,008 KB
testcase_01 AC 53 ms
70,016 KB
testcase_02 AC 68 ms
75,648 KB
testcase_03 AC 35 ms
52,480 KB
testcase_04 AC 35 ms
52,096 KB
testcase_05 AC 54 ms
69,248 KB
testcase_06 AC 54 ms
69,248 KB
testcase_07 AC 53 ms
69,248 KB
testcase_08 AC 68 ms
75,008 KB
testcase_09 AC 54 ms
69,888 KB
testcase_10 AC 67 ms
75,392 KB
testcase_11 AC 53 ms
69,504 KB
testcase_12 AC 65 ms
75,472 KB
testcase_13 AC 64 ms
75,648 KB
testcase_14 AC 92 ms
75,264 KB
testcase_15 AC 66 ms
75,392 KB
testcase_16 AC 66 ms
75,392 KB
testcase_17 AC 82 ms
75,520 KB
testcase_18 AC 66 ms
75,816 KB
testcase_19 AC 66 ms
75,768 KB
testcase_20 AC 65 ms
75,520 KB
testcase_21 AC 74 ms
75,880 KB
testcase_22 AC 52 ms
69,248 KB
testcase_23 AC 146 ms
76,032 KB
testcase_24 AC 81 ms
75,648 KB
testcase_25 AC 65 ms
75,264 KB
testcase_26 AC 73 ms
75,392 KB
testcase_27 AC 66 ms
75,520 KB
testcase_28 AC 93 ms
75,648 KB
testcase_29 AC 65 ms
75,500 KB
testcase_30 AC 119 ms
75,840 KB
testcase_31 AC 101 ms
76,032 KB
testcase_32 AC 78 ms
75,464 KB
testcase_33 AC 52 ms
69,248 KB
testcase_34 AC 90 ms
75,264 KB
testcase_35 AC 65 ms
75,520 KB
testcase_36 AC 97 ms
75,264 KB
testcase_37 AC 90 ms
75,648 KB
testcase_38 AC 174 ms
75,776 KB
testcase_39 AC 88 ms
75,904 KB
testcase_40 AC 68 ms
75,648 KB
testcase_41 AC 139 ms
75,792 KB
testcase_42 AC 67 ms
75,648 KB
testcase_43 AC 78 ms
75,416 KB
testcase_44 AC 81 ms
75,776 KB
testcase_45 AC 67 ms
75,412 KB
testcase_46 AC 80 ms
75,776 KB
testcase_47 AC 56 ms
70,528 KB
testcase_48 AC 473 ms
76,052 KB
testcase_49 AC 189 ms
76,324 KB
testcase_50 AC 114 ms
75,392 KB
testcase_51 AC 106 ms
75,392 KB
testcase_52 AC 94 ms
75,896 KB
testcase_53 AC 148 ms
75,780 KB
testcase_54 AC 117 ms
75,776 KB
testcase_55 AC 86 ms
75,776 KB
testcase_56 AC 323 ms
76,160 KB
testcase_57 AC 87 ms
75,776 KB
testcase_58 AC 160 ms
75,992 KB
testcase_59 AC 190 ms
75,776 KB
testcase_60 AC 75 ms
75,648 KB
testcase_61 AC 154 ms
76,160 KB
testcase_62 AC 148 ms
76,032 KB
testcase_63 AC 82 ms
75,940 KB
testcase_64 AC 102 ms
76,032 KB
testcase_65 AC 71 ms
75,408 KB
testcase_66 AC 141 ms
75,648 KB
testcase_67 AC 90 ms
75,264 KB
testcase_68 AC 66 ms
75,632 KB
testcase_69 AC 91 ms
75,520 KB
testcase_70 AC 217 ms
76,252 KB
testcase_71 AC 150 ms
75,648 KB
testcase_72 AC 139 ms
75,868 KB
testcase_73 AC 83 ms
75,776 KB
testcase_74 AC 74 ms
75,392 KB
testcase_75 AC 80 ms
75,392 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 #

#約数列挙
def make_divisors(n):
    lower_divisors , upper_divisors = [], []
    i = 1
    while i*i < n:
        if n % i == 0:
            lower_divisors.append(i)
            if i != n // i:
                upper_divisors.append(n//i)
        i += 1
    return lower_divisors+upper_divisors[::-1]

#めぐる式二部探索
#参考サイト:https://aotamasaki.hatenablog.com/entry/meguru_bisect

def is_ok(arg,tar,n):
    return (arg**n-1)//(arg-1) <= tar

def meguru_bisect(ng, ok, tar, n):
    while (abs(ok - ng) > 1):
        mid = (ok + ng) // 2
        if is_ok(mid,tar,n):
            ok = mid
        else:
            ng = mid
    return ok

N = int(input())
L=make_divisors(N)
ans = N-1
if N == 1:
    print(2)
    exit()
if N == 2:
    print(3)
    exit()


for l in L:
    for i in range(2,41):
        temp = meguru_bisect(10**12+1, 2 ,l ,i)
        if temp>N//l and (temp**i-1)//(temp-1)==l:
            ans = min(temp,ans)
        if temp == 1:
            break

print(ans)
0