結果

問題 No.1255 ハイレーツ・オブ・ボリビアン
ユーザー 37zigen37zigen
提出日時 2020-10-10 00:23:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 516 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-20 14:57:37
合計ジャッジ時間 10,278 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 39 ms
10,752 KB
testcase_06 AC 39 ms
10,624 KB
testcase_07 AC 40 ms
10,752 KB
testcase_08 AC 1,034 ms
10,752 KB
testcase_09 AC 1,049 ms
10,624 KB
testcase_10 AC 1,049 ms
10,752 KB
testcase_11 AC 961 ms
10,752 KB
testcase_12 AC 987 ms
10,624 KB
testcase_13 AC 115 ms
10,624 KB
testcase_14 TLE -
testcase_15 AC 971 ms
10,752 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