結果

問題 No.1409 Simple Math in yukicoder
ユーザー marroncastlemarroncastle
提出日時 2021-02-26 23:12:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 484 ms / 2,000 ms
コード長 412 bytes
コンパイル時間 422 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-10-02 16:06:09
合計ジャッジ時間 39,542 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,584 KB
testcase_01 AC 39 ms
51,584 KB
testcase_02 AC 42 ms
51,968 KB
testcase_03 AC 39 ms
51,456 KB
testcase_04 AC 38 ms
51,584 KB
testcase_05 AC 38 ms
51,840 KB
testcase_06 AC 39 ms
51,712 KB
testcase_07 AC 95 ms
69,760 KB
testcase_08 AC 169 ms
76,800 KB
testcase_09 AC 84 ms
68,096 KB
testcase_10 AC 153 ms
76,288 KB
testcase_11 AC 171 ms
76,672 KB
testcase_12 AC 155 ms
76,288 KB
testcase_13 AC 92 ms
68,096 KB
testcase_14 AC 86 ms
66,432 KB
testcase_15 AC 99 ms
70,272 KB
testcase_16 AC 98 ms
69,504 KB
testcase_17 AC 200 ms
76,800 KB
testcase_18 AC 137 ms
76,160 KB
testcase_19 AC 147 ms
75,904 KB
testcase_20 AC 127 ms
75,008 KB
testcase_21 AC 123 ms
74,240 KB
testcase_22 AC 156 ms
76,288 KB
testcase_23 AC 78 ms
67,200 KB
testcase_24 AC 83 ms
67,328 KB
testcase_25 AC 147 ms
76,288 KB
testcase_26 AC 158 ms
76,032 KB
testcase_27 AC 218 ms
76,416 KB
testcase_28 AC 218 ms
76,288 KB
testcase_29 AC 226 ms
76,288 KB
testcase_30 AC 218 ms
76,672 KB
testcase_31 AC 214 ms
76,416 KB
testcase_32 AC 213 ms
76,160 KB
testcase_33 AC 213 ms
76,288 KB
testcase_34 AC 199 ms
76,544 KB
testcase_35 AC 209 ms
76,416 KB
testcase_36 AC 219 ms
76,288 KB
testcase_37 AC 430 ms
76,288 KB
testcase_38 AC 440 ms
76,800 KB
testcase_39 AC 436 ms
76,544 KB
testcase_40 AC 448 ms
76,416 KB
testcase_41 AC 453 ms
76,672 KB
testcase_42 AC 439 ms
76,928 KB
testcase_43 AC 428 ms
76,928 KB
testcase_44 AC 446 ms
76,928 KB
testcase_45 AC 434 ms
76,416 KB
testcase_46 AC 469 ms
76,544 KB
testcase_47 AC 422 ms
76,416 KB
testcase_48 AC 444 ms
76,160 KB
testcase_49 AC 444 ms
76,800 KB
testcase_50 AC 449 ms
76,416 KB
testcase_51 AC 439 ms
76,800 KB
testcase_52 AC 445 ms
76,928 KB
testcase_53 AC 448 ms
76,544 KB
testcase_54 AC 430 ms
76,544 KB
testcase_55 AC 459 ms
76,672 KB
testcase_56 AC 457 ms
76,416 KB
testcase_57 AC 457 ms
76,928 KB
testcase_58 AC 457 ms
76,288 KB
testcase_59 AC 484 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,os,io
input = sys.stdin.readline
#input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline
T = int(input())
for t in range(T):
  v, x = map(int, input().split())
  p = v*x+1
  for i in range(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