結果

問題 No.1409 Simple Math in yukicoder
ユーザー marroncastlemarroncastle
提出日時 2021-02-26 23:28:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 676 ms / 2,000 ms
コード長 445 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 79,360 KB
最終ジャッジ日時 2024-10-02 16:26:06
合計ジャッジ時間 47,613 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,632 KB
testcase_01 AC 45 ms
53,760 KB
testcase_02 AC 46 ms
54,016 KB
testcase_03 AC 46 ms
53,632 KB
testcase_04 AC 46 ms
53,760 KB
testcase_05 AC 45 ms
54,016 KB
testcase_06 AC 46 ms
54,016 KB
testcase_07 AC 143 ms
77,184 KB
testcase_08 AC 277 ms
77,952 KB
testcase_09 AC 137 ms
77,184 KB
testcase_10 AC 228 ms
77,824 KB
testcase_11 AC 244 ms
77,824 KB
testcase_12 AC 231 ms
77,824 KB
testcase_13 AC 142 ms
77,056 KB
testcase_14 AC 129 ms
77,184 KB
testcase_15 AC 155 ms
77,440 KB
testcase_16 AC 154 ms
77,568 KB
testcase_17 AC 295 ms
78,080 KB
testcase_18 AC 196 ms
77,696 KB
testcase_19 AC 222 ms
77,568 KB
testcase_20 AC 191 ms
77,568 KB
testcase_21 AC 180 ms
77,696 KB
testcase_22 AC 222 ms
77,696 KB
testcase_23 AC 118 ms
77,184 KB
testcase_24 AC 109 ms
76,800 KB
testcase_25 AC 215 ms
77,440 KB
testcase_26 AC 234 ms
77,440 KB
testcase_27 AC 328 ms
78,080 KB
testcase_28 AC 318 ms
78,208 KB
testcase_29 AC 339 ms
78,080 KB
testcase_30 AC 336 ms
78,080 KB
testcase_31 AC 323 ms
77,952 KB
testcase_32 AC 325 ms
78,080 KB
testcase_33 AC 319 ms
77,824 KB
testcase_34 AC 325 ms
78,080 KB
testcase_35 AC 327 ms
77,952 KB
testcase_36 AC 328 ms
78,208 KB
testcase_37 AC 641 ms
79,104 KB
testcase_38 AC 648 ms
79,104 KB
testcase_39 AC 643 ms
79,104 KB
testcase_40 AC 638 ms
78,976 KB
testcase_41 AC 642 ms
78,848 KB
testcase_42 AC 660 ms
79,104 KB
testcase_43 AC 656 ms
79,232 KB
testcase_44 AC 634 ms
79,084 KB
testcase_45 AC 615 ms
79,232 KB
testcase_46 AC 649 ms
79,104 KB
testcase_47 AC 626 ms
79,360 KB
testcase_48 AC 654 ms
79,232 KB
testcase_49 AC 650 ms
79,360 KB
testcase_50 AC 648 ms
79,232 KB
testcase_51 AC 676 ms
79,104 KB
testcase_52 AC 645 ms
79,360 KB
testcase_53 AC 623 ms
79,232 KB
testcase_54 AC 644 ms
78,720 KB
testcase_55 AC 653 ms
78,976 KB
testcase_56 AC 652 ms
79,104 KB
testcase_57 AC 641 ms
78,976 KB
testcase_58 AC 644 ms
79,104 KB
testcase_59 AC 628 ms
79,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,os,io
input = sys.stdin.readline
#input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline
from random import *
T = int(input())
for t in range(T):
  v, x = map(int, input().split())
  p = v*x+1
  while True:
    i = randint(1,p-1)
    if pow(i,x,p)==1:
      s = set()
      a = i
      for _ in range(x):
        s.add(a)
        a *= i
        a %= p
      if len(s)==x:
        ans = sorted(list(s))
        break
  print(*ans)
0