結果

問題 No.1312 Snake Eyes
ユーザー ntudantuda
提出日時 2021-12-12 17:05:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 800 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,160 KB
最終ジャッジ日時 2024-07-21 04:11:28
合計ジャッジ時間 7,655 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,712 KB
testcase_01 AC 35 ms
51,968 KB
testcase_02 AC 35 ms
51,712 KB
testcase_03 AC 35 ms
51,712 KB
testcase_04 AC 35 ms
51,840 KB
testcase_05 AC 34 ms
51,456 KB
testcase_06 AC 35 ms
51,968 KB
testcase_07 AC 34 ms
51,968 KB
testcase_08 AC 35 ms
51,968 KB
testcase_09 AC 35 ms
51,712 KB
testcase_10 AC 40 ms
51,712 KB
testcase_11 AC 35 ms
51,712 KB
testcase_12 AC 35 ms
51,712 KB
testcase_13 AC 34 ms
51,456 KB
testcase_14 AC 35 ms
51,584 KB
testcase_15 AC 37 ms
51,712 KB
testcase_16 AC 38 ms
51,584 KB
testcase_17 AC 35 ms
51,584 KB
testcase_18 AC 35 ms
51,712 KB
testcase_19 AC 34 ms
51,712 KB
testcase_20 AC 34 ms
51,584 KB
testcase_21 AC 34 ms
51,712 KB
testcase_22 AC 35 ms
51,840 KB
testcase_23 AC 38 ms
57,728 KB
testcase_24 AC 44 ms
57,472 KB
testcase_25 AC 39 ms
57,344 KB
testcase_26 AC 40 ms
56,832 KB
testcase_27 WA -
testcase_28 AC 39 ms
57,344 KB
testcase_29 AC 38 ms
56,960 KB
testcase_30 AC 39 ms
57,216 KB
testcase_31 AC 40 ms
57,088 KB
testcase_32 AC 39 ms
57,344 KB
testcase_33 AC 35 ms
51,712 KB
testcase_34 AC 39 ms
57,600 KB
testcase_35 WA -
testcase_36 AC 39 ms
56,960 KB
testcase_37 AC 39 ms
57,344 KB
testcase_38 AC 40 ms
57,600 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 WA -
testcase_63 AC 38 ms
57,472 KB
testcase_64 AC 39 ms
57,472 KB
testcase_65 AC 40 ms
56,832 KB
testcase_66 AC 38 ms
57,472 KB
testcase_67 AC 35 ms
51,712 KB
testcase_68 AC 46 ms
57,216 KB
testcase_69 AC 43 ms
57,088 KB
testcase_70 AC 91 ms
58,240 KB
testcase_71 AC 60 ms
58,112 KB
testcase_72 AC 42 ms
58,240 KB
testcase_73 AC 38 ms
57,088 KB
testcase_74 AC 37 ms
57,344 KB
testcase_75 AC 40 ms
57,216 KB
testcase_76 WA -
testcase_77 WA -
testcase_78 WA -
testcase_79 AC 65 ms
57,984 KB
testcase_80 WA -
testcase_81 WA -
testcase_82 AC 130 ms
59,520 KB
testcase_83 WA -
testcase_84 WA -
testcase_85 AC 80 ms
57,984 KB
testcase_86 AC 126 ms
60,672 KB
testcase_87 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def make_divisors(n):
    divisors = []
    i = 1
    while i ** 2 <= n:
        if n % i == 0:
            divisors.append(i)
            if i != n // i:
                divisors.append(n//i)
        i += 1
    divisors.sort()
    return divisors

N = int(input())
if N == 1:
    print(2)
    sys.exit()
if N == 2:
    print(3)
    sys.exit()
D = make_divisors(N)
D.pop(-1)
ans = 10**5
for a in D:
    n = N // a
    D2 = make_divisors(n-1)
    D2.remove(1)
    flag = 0
    for p in D2:
        if a >= p:
            continue
        tmp = 1
        p2 = 1
        while tmp < n:
            if n - 1 == p * tmp:
                ans = min(p,ans)
                flag = 1
                break
            p2 *= p
            tmp += p2
        if flag == 1:
            break

print(ans)
0