結果

問題 No.1255 ハイレーツ・オブ・ボリビアン
ユーザー 37zigen37zigen
提出日時 2020-10-10 00:54:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 196 ms / 2,000 ms
コード長 463 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 64,560 KB
最終ジャッジ日時 2024-07-23 08:47:14
合計ジャッジ時間 2,111 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,268 KB
testcase_01 AC 38 ms
53,964 KB
testcase_02 AC 43 ms
59,428 KB
testcase_03 AC 43 ms
59,228 KB
testcase_04 AC 42 ms
59,152 KB
testcase_05 AC 49 ms
62,644 KB
testcase_06 AC 50 ms
61,636 KB
testcase_07 AC 49 ms
61,728 KB
testcase_08 AC 115 ms
63,248 KB
testcase_09 AC 117 ms
62,952 KB
testcase_10 AC 113 ms
62,596 KB
testcase_11 AC 114 ms
62,392 KB
testcase_12 AC 116 ms
64,560 KB
testcase_13 AC 51 ms
61,628 KB
testcase_14 AC 196 ms
62,840 KB
testcase_15 AC 115 ms
63,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
for t in range(T):
    n=int(input())
    n=2*n-1
    m=n
    ord=n
    d=2
    while n>1:
        if n%d==0:
            ord-=ord//d
        while n%d==0:
            n//=d
        d+=1
        if d*d>n:
            d=n
    d=1
    ans=10**10
    while d*d<=ord:
        if ord%d==0:
            if pow(2,d,m)==1%m:
                ans=min(ans,d)
            if pow(2,ord//d,m)==1%m:
                ans=min(ans,ord//d)
        d+=1
    print(ans)
0