結果

問題 No.1312 Snake Eyes
ユーザー FromBooskaFromBooska
提出日時 2023-03-03 18:07:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 908 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 81,992 KB
実行使用メモリ 77,604 KB
最終ジャッジ日時 2024-09-17 22:11:12
合計ジャッジ時間 6,989 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,132 KB
testcase_01 AC 35 ms
52,212 KB
testcase_02 AC 32 ms
53,620 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 31 ms
52,948 KB
testcase_06 AC 32 ms
53,996 KB
testcase_07 AC 33 ms
52,496 KB
testcase_08 AC 33 ms
53,052 KB
testcase_09 AC 35 ms
52,424 KB
testcase_10 AC 34 ms
52,920 KB
testcase_11 AC 35 ms
53,160 KB
testcase_12 AC 36 ms
52,556 KB
testcase_13 AC 32 ms
52,408 KB
testcase_14 AC 36 ms
52,440 KB
testcase_15 AC 38 ms
53,928 KB
testcase_16 AC 35 ms
52,352 KB
testcase_17 AC 32 ms
52,696 KB
testcase_18 AC 32 ms
53,432 KB
testcase_19 AC 31 ms
52,532 KB
testcase_20 AC 36 ms
53,984 KB
testcase_21 AC 35 ms
52,600 KB
testcase_22 AC 32 ms
51,752 KB
testcase_23 AC 37 ms
58,456 KB
testcase_24 AC 35 ms
57,536 KB
testcase_25 AC 34 ms
57,616 KB
testcase_26 AC 35 ms
57,692 KB
testcase_27 AC 35 ms
57,980 KB
testcase_28 AC 36 ms
57,476 KB
testcase_29 AC 35 ms
59,572 KB
testcase_30 AC 35 ms
57,472 KB
testcase_31 AC 39 ms
57,600 KB
testcase_32 AC 42 ms
59,288 KB
testcase_33 AC 35 ms
53,504 KB
testcase_34 AC 42 ms
59,808 KB
testcase_35 AC 37 ms
57,812 KB
testcase_36 AC 39 ms
57,900 KB
testcase_37 AC 40 ms
58,608 KB
testcase_38 AC 39 ms
59,732 KB
testcase_39 AC 39 ms
58,384 KB
testcase_40 AC 35 ms
57,408 KB
testcase_41 AC 36 ms
58,488 KB
testcase_42 AC 34 ms
57,892 KB
testcase_43 AC 35 ms
57,888 KB
testcase_44 AC 36 ms
58,188 KB
testcase_45 AC 34 ms
58,764 KB
testcase_46 AC 35 ms
57,420 KB
testcase_47 AC 35 ms
57,452 KB
testcase_48 AC 134 ms
64,052 KB
testcase_49 AC 93 ms
59,208 KB
testcase_50 AC 60 ms
59,160 KB
testcase_51 AC 52 ms
58,196 KB
testcase_52 AC 77 ms
58,340 KB
testcase_53 AC 87 ms
59,220 KB
testcase_54 AC 75 ms
57,944 KB
testcase_55 AC 57 ms
57,940 KB
testcase_56 AC 82 ms
62,232 KB
testcase_57 AC 57 ms
58,108 KB
testcase_58 AC 84 ms
58,928 KB
testcase_59 AC 55 ms
59,392 KB
testcase_60 AC 56 ms
58,372 KB
testcase_61 AC 83 ms
60,624 KB
testcase_62 AC 60 ms
58,720 KB
testcase_63 AC 35 ms
58,004 KB
testcase_64 AC 37 ms
57,728 KB
testcase_65 AC 41 ms
57,464 KB
testcase_66 AC 36 ms
58,268 KB
testcase_67 AC 36 ms
53,408 KB
testcase_68 AC 41 ms
59,544 KB
testcase_69 AC 38 ms
58,524 KB
testcase_70 AC 89 ms
59,536 KB
testcase_71 AC 58 ms
58,832 KB
testcase_72 AC 37 ms
58,896 KB
testcase_73 AC 34 ms
58,644 KB
testcase_74 AC 33 ms
57,440 KB
testcase_75 AC 33 ms
57,924 KB
testcase_76 AC 671 ms
77,604 KB
testcase_77 AC 62 ms
58,452 KB
testcase_78 AC 61 ms
57,812 KB
testcase_79 AC 61 ms
59,424 KB
testcase_80 AC 77 ms
63,992 KB
testcase_81 AC 69 ms
57,668 KB
testcase_82 AC 123 ms
60,620 KB
testcase_83 AC 135 ms
63,028 KB
testcase_84 AC 62 ms
58,228 KB
testcase_85 AC 83 ms
59,172 KB
testcase_86 AC 119 ms
60,908 KB
testcase_87 AC 50 ms
58,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# さっきのACは嘘解法
# Nの約数-1だけでなく、(Nの約数-1)の約数もpの候補

def base_k(num, k):
    result = set()
    while num > 0:
        amari = num%k
        result.add(amari)
        num -= amari
        num //= k
    return len(result)

def 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]

N = int(input())
divs = divisors(N)
divs_divs = set()
for d in divs:
    for d2 in divisors(d-1):
        if d2 > 1:
            divs_divs.add(d2)
divs_divs_sorted = sorted(list(divs_divs))
#print(divs_divs_sorted)
for d3 in divs_divs_sorted:
    if d3 == 1:
        continue
    calc = base_k(N, d3)
    if calc == 1:
        print(d3)
        exit()
0