結果

問題 No.1255 ハイレーツ・オブ・ボリビアン
ユーザー tamatotamato
提出日時 2020-10-10 00:20:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 1,145 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 63,776 KB
最終ジャッジ日時 2024-07-23 08:47:02
合計ジャッジ時間 2,239 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,332 KB
testcase_01 AC 38 ms
52,452 KB
testcase_02 AC 42 ms
59,152 KB
testcase_03 AC 42 ms
58,532 KB
testcase_04 AC 42 ms
59,516 KB
testcase_05 AC 47 ms
61,720 KB
testcase_06 AC 49 ms
61,124 KB
testcase_07 AC 49 ms
61,096 KB
testcase_08 AC 137 ms
63,776 KB
testcase_09 AC 137 ms
62,796 KB
testcase_10 AC 139 ms
63,156 KB
testcase_11 AC 138 ms
62,020 KB
testcase_12 AC 138 ms
63,076 KB
testcase_13 AC 49 ms
59,156 KB
testcase_14 AC 187 ms
61,500 KB
testcase_15 AC 136 ms
62,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    def PrimeDecomposition(N):
        ret = {}
        n = int(N ** 0.5)
        for d in range(2, n + 1):
            while N % d == 0:
                if d not in ret:
                    ret[d] = 1
                else:
                    ret[d] += 1
                N //= d
            if N == 1:
                break
        if N != 1:
            ret[N] = 1
        return ret

    def euler_phi(N):
        P = PrimeDecomposition(N)
        ret = N
        for p in P:
            ret = ret * (p-1) // p
        return ret

    for _ in range(int(input())):
        N = int(input())
        if N == 1:
            print(1)
            continue
        phi = euler_phi(2 * N - 1)
        div = []
        for i in range(1, phi + 1):
            if i * i > phi:
                break
            if phi % i == 0:
                div.append(i)
                div.append(phi // i)
        div.sort()
        for d in div:
            if pow(2, d, 2*N-1) == 1:
                print(d)
                break


if __name__ == '__main__':
    main()
0