結果

問題 No.1255 ハイレーツ・オブ・ボリビアン
ユーザー mkawa2mkawa2
提出日時 2023-05-12 21:19:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,375 bytes
コンパイル時間 369 ms
コンパイル使用メモリ 82,584 KB
実行使用メモリ 63,084 KB
最終ジャッジ日時 2024-05-06 10:45:42
合計ジャッジ時間 2,567 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,736 KB
testcase_01 AC 43 ms
52,480 KB
testcase_02 AC 54 ms
59,520 KB
testcase_03 AC 48 ms
59,136 KB
testcase_04 AC 47 ms
58,368 KB
testcase_05 AC 57 ms
61,056 KB
testcase_06 AC 54 ms
60,964 KB
testcase_07 AC 55 ms
61,056 KB
testcase_08 AC 106 ms
62,336 KB
testcase_09 AC 105 ms
62,336 KB
testcase_10 AC 105 ms
63,084 KB
testcase_11 AC 104 ms
62,336 KB
testcase_12 AC 107 ms
62,464 KB
testcase_13 WA -
testcase_14 AC 189 ms
60,928 KB
testcase_15 AC 107 ms
62,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = (1 << 63)-1
# md = 10**9+7
md = 998244353

def EulerPhi(n):
    res = n
    for i in range(2, n + 1):
        if i**2 > n: break
        if n % i == 0:
            res -= res // i
            while n % i == 0: n //= i
    if n > 1: res -= res // n
    return res

def factors(a):
    if a<=0:return [0]
    dd0,dd1=[],[]
    for d in range(1,round(a**0.5)+1):
        if a%d:continue
        dd0.append(d)
        dd1.append(a//d)
    if dd0[-1]==dd1[-1]:dd1.pop()
    return dd0+dd1[::-1]

def solve():
    n=II()
    m=2*n-1
    for f in factors(EulerPhi(m))[1:]:
        if pow(2,f,m)==1:
            print(f)
            return
    print(-1)

for _ in range(II()):solve()
0