結果

問題 No.1409 Simple Math in yukicoder
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-03-02 14:06:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 785 bytes
コンパイル時間 413 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 78,080 KB
最終ジャッジ日時 2024-10-03 01:44:22
合計ジャッジ時間 32,288 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,144 KB
testcase_01 AC 47 ms
54,144 KB
testcase_02 AC 43 ms
53,888 KB
testcase_03 AC 44 ms
54,144 KB
testcase_04 AC 43 ms
54,144 KB
testcase_05 AC 42 ms
54,016 KB
testcase_06 AC 44 ms
54,272 KB
testcase_07 AC 72 ms
71,680 KB
testcase_08 AC 109 ms
77,216 KB
testcase_09 AC 73 ms
71,680 KB
testcase_10 AC 103 ms
77,304 KB
testcase_11 AC 109 ms
77,156 KB
testcase_12 AC 101 ms
77,568 KB
testcase_13 AC 73 ms
72,192 KB
testcase_14 AC 67 ms
70,144 KB
testcase_15 AC 87 ms
76,928 KB
testcase_16 AC 79 ms
74,880 KB
testcase_17 AC 124 ms
77,580 KB
testcase_18 AC 98 ms
77,568 KB
testcase_19 AC 100 ms
77,312 KB
testcase_20 AC 94 ms
77,028 KB
testcase_21 AC 89 ms
77,312 KB
testcase_22 AC 104 ms
77,312 KB
testcase_23 AC 65 ms
68,864 KB
testcase_24 AC 62 ms
67,328 KB
testcase_25 AC 103 ms
77,184 KB
testcase_26 AC 107 ms
77,648 KB
testcase_27 AC 127 ms
77,968 KB
testcase_28 AC 128 ms
77,568 KB
testcase_29 AC 127 ms
77,496 KB
testcase_30 AC 129 ms
77,696 KB
testcase_31 AC 130 ms
77,844 KB
testcase_32 AC 129 ms
77,568 KB
testcase_33 AC 127 ms
77,548 KB
testcase_34 AC 127 ms
77,780 KB
testcase_35 AC 128 ms
77,532 KB
testcase_36 AC 127 ms
77,696 KB
testcase_37 AC 158 ms
77,492 KB
testcase_38 AC 147 ms
77,568 KB
testcase_39 AC 143 ms
77,696 KB
testcase_40 AC 144 ms
77,312 KB
testcase_41 AC 149 ms
77,824 KB
testcase_42 AC 144 ms
77,440 KB
testcase_43 AC 147 ms
77,556 KB
testcase_44 AC 144 ms
77,696 KB
testcase_45 AC 147 ms
77,692 KB
testcase_46 AC 145 ms
77,568 KB
testcase_47 AC 142 ms
77,568 KB
testcase_48 AC 145 ms
77,568 KB
testcase_49 AC 146 ms
77,568 KB
testcase_50 AC 149 ms
77,492 KB
testcase_51 AC 146 ms
77,696 KB
testcase_52 AC 145 ms
77,568 KB
testcase_53 AC 146 ms
77,440 KB
testcase_54 AC 144 ms
78,080 KB
testcase_55 AC 148 ms
77,408 KB
testcase_56 AC 144 ms
77,692 KB
testcase_57 AC 151 ms
77,824 KB
testcase_58 AC 151 ms
77,568 KB
testcase_59 AC 148 ms
77,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def func(n):
  s=set()
  for i in range(2,int(n**0.5)+1):
    if n%i==0:
      s.add(i)
      s.add(n//i)
  return s

from random import randint
def main(u,x):
  p=x*u+1
  if u==1:return list(range(1,p))
  if x==1:return [x]
  # p:prime
  # a^(p-1)=1 mod p
  # p=x*u+1
  # a^(x*u)=1 mod p
  # (a^u)^x=1 mod p
  ss=func(p-1)
  f=p-1-len(ss)
  while True:
    i=randint(2,p-2)
    s={i}
    flg=True
    for xx in ss:
      if pow(i,xx,p)!=1:
        continue
      else:
        flg=False
        break
    if flg:break
  i=pow(i,u,p)
  ary=[]
  ii=i
  for _ in range(x):
    ary.append(ii)
    ii=ii*i%p
  ary.sort()
  return ary
if __name__=='__main__':
  t=int(input())
  cases=[list(map(int,input().split())) for _ in range(t)]
  for u,x in cases:
    ret=main(u,x)
    print(*ret)
0