結果

問題 No.1255 ハイレーツ・オブ・ボリビアン
ユーザー anagohirameanagohirame
提出日時 2020-10-09 23:52:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 560 bytes
コンパイル時間 2,013 ms
コンパイル使用メモリ 81,960 KB
実行使用メモリ 62,464 KB
最終ジャッジ日時 2024-07-20 14:43:58
合計ジャッジ時間 2,558 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,840 KB
testcase_01 AC 45 ms
52,096 KB
testcase_02 AC 52 ms
58,752 KB
testcase_03 AC 47 ms
58,240 KB
testcase_04 AC 47 ms
58,368 KB
testcase_05 AC 55 ms
61,312 KB
testcase_06 AC 56 ms
61,440 KB
testcase_07 AC 57 ms
61,184 KB
testcase_08 AC 158 ms
62,336 KB
testcase_09 AC 154 ms
62,136 KB
testcase_10 AC 156 ms
62,208 KB
testcase_11 AC 154 ms
61,952 KB
testcase_12 AC 158 ms
62,464 KB
testcase_13 WA -
testcase_14 AC 194 ms
59,776 KB
testcase_15 AC 153 ms
62,080 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
	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