結果

問題 No.1255 ハイレーツ・オブ・ボリビアン
ユーザー googol_S0googol_S0
提出日時 2020-10-09 23:24:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 529 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 64,092 KB
最終ジャッジ日時 2024-07-23 08:45:57
合計ジャッジ時間 2,178 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,060 KB
testcase_01 AC 37 ms
52,940 KB
testcase_02 AC 45 ms
59,292 KB
testcase_03 AC 43 ms
60,684 KB
testcase_04 AC 42 ms
60,248 KB
testcase_05 AC 50 ms
63,732 KB
testcase_06 AC 50 ms
61,960 KB
testcase_07 AC 49 ms
62,972 KB
testcase_08 AC 137 ms
63,600 KB
testcase_09 AC 134 ms
63,404 KB
testcase_10 AC 136 ms
63,372 KB
testcase_11 AC 135 ms
63,832 KB
testcase_12 AC 139 ms
64,092 KB
testcase_13 AC 46 ms
59,540 KB
testcase_14 AC 166 ms
61,832 KB
testcase_15 AC 135 ms
63,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(x):
  r=[]
  for i in range(2,int(x**0.5)+1):
    if x%i==0:
      r.append(i)
      while x%i==0:
        x//=i
  if x!=1:
    r.append(x)
  return r

def g(x):
  r=[]
  for i in range(1,int(x**0.5)+1):
    if x%i==0:
      r.append(i)
      if i*i!=x:
        r.append(x//i)
  return r

T=int(input())
for i in range(T):
  N=int(input())
  N=2*N-1
  X=f(N)
  Y=N
  for j in range(len(X)):
    Y//=X[j]
    Y*=X[j]-1
  X=g(Y)
  P=10**12
  for j in range(len(X)):
    if pow(2,X[j],N)==(1%N):
      P=min(P,X[j])
  print(P)
0