結果

問題 No.1312 Snake Eyes
ユーザー FromBooskaFromBooska
提出日時 2023-08-31 20:00:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,133 bytes
コンパイル時間 391 ms
コンパイル使用メモリ 81,964 KB
実行使用メモリ 75,516 KB
最終ジャッジ日時 2024-06-11 01:31:06
合計ジャッジ時間 8,465 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,408 KB
testcase_01 AC 39 ms
52,620 KB
testcase_02 AC 41 ms
53,176 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 40 ms
53,140 KB
testcase_06 AC 39 ms
52,400 KB
testcase_07 AC 39 ms
53,140 KB
testcase_08 AC 38 ms
53,780 KB
testcase_09 AC 38 ms
52,544 KB
testcase_10 AC 38 ms
53,356 KB
testcase_11 AC 38 ms
52,204 KB
testcase_12 AC 39 ms
52,196 KB
testcase_13 AC 38 ms
53,164 KB
testcase_14 AC 38 ms
52,616 KB
testcase_15 AC 38 ms
52,404 KB
testcase_16 AC 38 ms
52,964 KB
testcase_17 AC 38 ms
52,464 KB
testcase_18 AC 37 ms
54,092 KB
testcase_19 AC 38 ms
52,404 KB
testcase_20 WA -
testcase_21 AC 40 ms
54,016 KB
testcase_22 AC 38 ms
52,476 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 41 ms
58,448 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 39 ms
53,500 KB
testcase_34 WA -
testcase_35 AC 41 ms
57,984 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 41 ms
57,524 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 42 ms
57,940 KB
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 AC 59 ms
58,772 KB
testcase_61 WA -
testcase_62 WA -
testcase_63 WA -
testcase_64 AC 44 ms
59,188 KB
testcase_65 AC 44 ms
59,784 KB
testcase_66 WA -
testcase_67 AC 43 ms
52,824 KB
testcase_68 AC 46 ms
58,648 KB
testcase_69 AC 43 ms
58,204 KB
testcase_70 AC 103 ms
60,416 KB
testcase_71 AC 69 ms
60,468 KB
testcase_72 AC 47 ms
59,168 KB
testcase_73 AC 42 ms
57,924 KB
testcase_74 AC 42 ms
58,320 KB
testcase_75 AC 44 ms
57,844 KB
testcase_76 WA -
testcase_77 AC 71 ms
58,648 KB
testcase_78 WA -
testcase_79 AC 68 ms
58,848 KB
testcase_80 AC 77 ms
63,420 KB
testcase_81 AC 81 ms
57,640 KB
testcase_82 AC 138 ms
58,652 KB
testcase_83 WA -
testcase_84 AC 72 ms
58,256 KB
testcase_85 AC 87 ms
59,372 KB
testcase_86 AC 132 ms
60,924 KB
testcase_87 AC 58 ms
57,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 単調性はないので二分探索は無理
# 実験するとわかるのだがNの約数dに対して、d-1
# さらにd-1の約数、がpになりうる

def base_n(num_10,n):
    str_n = ''
    while num_10:
        if num_10%n>=10:
            return -1
        str_n += str(num_10%n)
        num_10 //= n
    return int(str_n[::-1])

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())
p_candidates = set()
N_divs = divisors(N)
for d in N_divs:
    p_candidates.add(d-1)
    d1_divs = set(divisors(d-1))
    p_candidates |= d1_divs
p_candidates.discard(0)
p_candidates.discard(1)
p_candidates = sorted(list(p_candidates))
#print(p_candidates)
for p in p_candidates:
    calc = base_n(N, p)
    if calc == -1:
        continue
    S = set()
    for c in str(calc):
        S.add(c)
    #print('p', p, 'calc', calc, 'S', S)
    if len(S)==1:
        print(p)
        break
0