結果

問題 No.1255 ハイレーツ・オブ・ボリビアン
ユーザー ayaoniayaoni
提出日時 2020-10-30 12:55:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 821 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 63,760 KB
最終ジャッジ日時 2024-07-23 08:49:36
合計ジャッジ時間 2,182 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,736 KB
testcase_01 AC 38 ms
53,400 KB
testcase_02 AC 42 ms
59,680 KB
testcase_03 AC 43 ms
59,176 KB
testcase_04 AC 41 ms
58,968 KB
testcase_05 AC 48 ms
62,028 KB
testcase_06 AC 48 ms
61,688 KB
testcase_07 AC 48 ms
61,960 KB
testcase_08 AC 126 ms
63,056 KB
testcase_09 AC 126 ms
62,752 KB
testcase_10 AC 125 ms
63,760 KB
testcase_11 AC 124 ms
62,416 KB
testcase_12 AC 126 ms
63,592 KB
testcase_13 AC 48 ms
60,072 KB
testcase_14 AC 165 ms
61,164 KB
testcase_15 AC 123 ms
63,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def I(): return int(sys.stdin.readline().rstrip())


def phi(n):
    ans = n
    for i in range(2,int(n**.5) + 1):
        if n % i == 0:
            ans = (ans*(i-1))//i
            while n % i == 0:
                n //= i
            if n == 1:  # 時間短縮
                break
    if n != 1:
        ans = (ans*(n-1))//n
    return ans


def divisor(n):  # nの約数全列挙
    res = []
    for i in range(1,int(n**.5)+1):
        if n % i == 0:
            res.append(i)
            if i != n//i:
                res.append(n//i)
    return res


T = I()
for _ in range(T):
    N = I()
    # 2**K == 1 (mod 2*N-1) たる最小のKを求める
    x = phi(2*N-1)
    div = divisor(x)
    div.sort()
    for d in div:
        if pow(2,d,2*N-1) == 1 or N == 1:
            print(d)
            break
0