結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,448 KB
testcase_01 AC 39 ms
52,820 KB
testcase_02 AC 43 ms
59,528 KB
testcase_03 AC 41 ms
59,348 KB
testcase_04 AC 42 ms
58,736 KB
testcase_05 AC 50 ms
62,192 KB
testcase_06 AC 52 ms
61,552 KB
testcase_07 AC 47 ms
61,632 KB
testcase_08 AC 115 ms
64,032 KB
testcase_09 AC 115 ms
63,156 KB
testcase_10 AC 115 ms
63,920 KB
testcase_11 AC 111 ms
63,284 KB
testcase_12 AC 115 ms
64,164 KB
testcase_13 AC 51 ms
62,068 KB
testcase_14 AC 194 ms
62,652 KB
testcase_15 AC 112 ms
63,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

T=int(input())
for t in range(T):
    n=int(input())
    n=2*n-1
    m=n
    ord=n
    d=2
    while d*d<=n:
        flag=False
        while n%d==0:
            n//=d
            flag=True
        if flag:
            ord-=ord//d
        d+=1
    if n>1:
        ord-=ord//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