結果

問題 No.1255 ハイレーツ・オブ・ボリビアン
ユーザー anagohirameanagohirame
提出日時 2020-10-09 23:53:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 188 ms / 2,000 ms
コード長 594 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 64,096 KB
最終ジャッジ日時 2024-07-23 08:46:53
合計ジャッジ時間 2,341 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,152 KB
testcase_01 AC 37 ms
53,360 KB
testcase_02 AC 43 ms
58,424 KB
testcase_03 AC 42 ms
58,436 KB
testcase_04 AC 43 ms
57,956 KB
testcase_05 AC 49 ms
62,332 KB
testcase_06 AC 50 ms
61,700 KB
testcase_07 AC 47 ms
61,572 KB
testcase_08 AC 147 ms
62,012 KB
testcase_09 AC 147 ms
62,516 KB
testcase_10 AC 149 ms
64,020 KB
testcase_11 AC 145 ms
63,572 KB
testcase_12 AC 152 ms
64,096 KB
testcase_13 AC 49 ms
59,340 KB
testcase_14 AC 188 ms
61,228 KB
testcase_15 AC 147 ms
63,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def input():
	return sys.stdin.buffer.readline()[:-1]

def phi(x):
	prime = []
	i = 2
	y = x
	while i*i <= x:
		if y%i == 0:
			prime.append(i)
			while y%i == 0:
				y //= i
		i += 1

	if y > 1:
		prime.append(y)
	res = x
	for p in prime:
		res = res * (p-1) // p

	div = []
	i = 1
	while i * i <= res:
		if res % i == 0:
			div.append(i)
			div.append(res // i)
		i += 1
	return div

for _ in range(int(input())):
	n = int(input()) * 2
	if n == 2:
		print(1)
		continue
	div = phi(n-1)
	#print(div)
	ans = n
	for d in div:
		if pow(2, d, n-1) == 1:
			ans = min(ans, d)
	print(ans)
0