結果

問題 No.1409 Simple Math in yukicoder
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-03-02 13:31:39
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 591 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 284,900 KB
最終ジャッジ日時 2024-10-03 01:43:05
合計ジャッジ時間 60,642 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
59,444 KB
testcase_01 AC 45 ms
55,732 KB
testcase_02 AC 44 ms
55,268 KB
testcase_03 AC 44 ms
55,252 KB
testcase_04 AC 43 ms
54,288 KB
testcase_05 AC 43 ms
54,052 KB
testcase_06 AC 44 ms
54,500 KB
testcase_07 AC 587 ms
160,768 KB
testcase_08 AC 1,730 ms
225,468 KB
testcase_09 AC 554 ms
158,844 KB
testcase_10 AC 1,421 ms
188,748 KB
testcase_11 AC 1,748 ms
217,548 KB
testcase_12 AC 1,433 ms
199,328 KB
testcase_13 AC 657 ms
152,912 KB
testcase_14 AC 482 ms
150,348 KB
testcase_15 AC 702 ms
168,552 KB
testcase_16 AC 684 ms
153,144 KB
testcase_17 TLE -
testcase_18 AC 1,162 ms
193,668 KB
testcase_19 AC 1,287 ms
167,808 KB
testcase_20 AC 1,065 ms
181,920 KB
testcase_21 AC 870 ms
161,204 KB
testcase_22 AC 1,474 ms
208,980 KB
testcase_23 AC 384 ms
133,672 KB
testcase_24 AC 342 ms
151,556 KB
testcase_25 AC 1,413 ms
200,604 KB
testcase_26 AC 1,603 ms
210,468 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

  while True:
    i=randint(2,p-1)
    s={i}
    ii=i*i%p
    while ii!=i:
      s.add(ii)
      ii=ii*i%p
    if len(s)==p-1: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