結果

問題 No.1255 ハイレーツ・オブ・ボリビアン
ユーザー tktk_snsntktk_snsn
提出日時 2021-04-24 15:28:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 171 ms / 2,000 ms
コード長 726 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 64,952 KB
最終ジャッジ日時 2024-07-04 09:06:26
合計ジャッジ時間 2,285 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,804 KB
testcase_01 AC 39 ms
53,756 KB
testcase_02 AC 44 ms
60,656 KB
testcase_03 AC 46 ms
60,892 KB
testcase_04 AC 46 ms
58,524 KB
testcase_05 AC 49 ms
60,632 KB
testcase_06 AC 50 ms
61,296 KB
testcase_07 AC 48 ms
61,164 KB
testcase_08 AC 131 ms
63,364 KB
testcase_09 AC 132 ms
63,144 KB
testcase_10 AC 138 ms
64,952 KB
testcase_11 AC 134 ms
63,228 KB
testcase_12 AC 140 ms
64,280 KB
testcase_13 AC 49 ms
60,460 KB
testcase_14 AC 171 ms
61,376 KB
testcase_15 AC 133 ms
64,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def euler_phi(N):
    """
    Euler totient function
    [1,N]の自然数のうちNと互いに素なものの個数
    """
    res = N
    for i in range(2, int(N ** 0.5) + 1):
        if N % i == 0:
            res -= res // i
            while N % i == 0:
                N //= i
    if N > 1:
        res -= res // N
    return res


def div(n):
    res = set()
    for i in range(1, int(n**0.5)+1):
        if n % i == 0:
            res.add(i)
            res.add(n//i)
    return sorted(res)


def main():
    N = int(input())
    if N == 1:
        return 1
    mod = 2*N-1
    for i in div(euler_phi(mod)):
        if pow(2, i, mod) == 1:
            return i


T = int(input())
for _ in range(T):
    print(main())
0