結果

問題 No.1255 ハイレーツ・オブ・ボリビアン
ユーザー anagohirameanagohirame
提出日時 2020-10-09 23:53:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 594 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 62,592 KB
最終ジャッジ日時 2024-07-20 14:44:06
合計ジャッジ時間 2,339 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,124 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 46 ms
58,624 KB
testcase_03 AC 46 ms
58,496 KB
testcase_04 AC 45 ms
57,600 KB
testcase_05 AC 54 ms
61,184 KB
testcase_06 AC 54 ms
61,192 KB
testcase_07 AC 53 ms
60,288 KB
testcase_08 AC 140 ms
61,568 KB
testcase_09 AC 147 ms
61,880 KB
testcase_10 AC 149 ms
62,464 KB
testcase_11 AC 143 ms
61,696 KB
testcase_12 AC 154 ms
62,592 KB
testcase_13 WA -
testcase_14 AC 185 ms
59,520 KB
testcase_15 AC 147 ms
62,464 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 == 1:
		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