結果

問題 No.1255 ハイレーツ・オブ・ボリビアン
ユーザー chineristACchineristAC
提出日時 2020-10-09 23:19:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 183 ms / 2,000 ms
コード長 697 bytes
コンパイル時間 400 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 64,824 KB
最終ジャッジ日時 2024-07-23 08:45:50
合計ジャッジ時間 2,360 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,144 KB
testcase_01 AC 38 ms
54,152 KB
testcase_02 AC 45 ms
60,704 KB
testcase_03 AC 41 ms
59,808 KB
testcase_04 AC 43 ms
59,308 KB
testcase_05 AC 49 ms
62,300 KB
testcase_06 AC 48 ms
62,616 KB
testcase_07 AC 51 ms
62,772 KB
testcase_08 AC 145 ms
64,552 KB
testcase_09 AC 143 ms
64,104 KB
testcase_10 AC 143 ms
63,280 KB
testcase_11 AC 142 ms
64,288 KB
testcase_12 AC 145 ms
63,956 KB
testcase_13 AC 49 ms
59,604 KB
testcase_14 AC 183 ms
62,364 KB
testcase_15 AC 143 ms
64,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
def euler_phi(n):
    res=n
    for x in range(2,int(n**.5)+2):
        if n%x==0:
            res=(res//x)*(x-1)
            while n%x==0:
                n//=x
    if n!=1:
        res=(res//n)*(n-1)
    return res

def divisors(M):#Mの約数列 O(n^(0.5+e))
    import math
    d=[]
    i=1
    while math.sqrt(M)>=i:
        if M%i==0:
            d.append(i)
            if i**2!=M:
                d.append(M//i)
        i=i+1
    d.sort()
    return d

for _ in range(int(input())):
    n = int(input())
    d = euler_phi(2*n-1)
    div = divisors(d)
    for i in div:
        if pow(2,i,2*n-1)==1:
            print(i)
            break
    if n==1:
        print(1)
0