結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 46 ms
51,712 KB
testcase_03 AC 39 ms
51,712 KB
testcase_04 AC 39 ms
51,840 KB
testcase_05 AC 40 ms
51,968 KB
testcase_06 AC 40 ms
51,968 KB
testcase_07 AC 100 ms
69,504 KB
testcase_08 AC 172 ms
76,416 KB
testcase_09 AC 83 ms
67,840 KB
testcase_10 AC 155 ms
76,416 KB
testcase_11 AC 173 ms
76,672 KB
testcase_12 AC 156 ms
76,416 KB
testcase_13 AC 94 ms
68,224 KB
testcase_14 AC 88 ms
66,560 KB
testcase_15 AC 103 ms
70,528 KB
testcase_16 AC 99 ms
69,376 KB
testcase_17 AC 207 ms
76,288 KB
testcase_18 AC 139 ms
76,544 KB
testcase_19 AC 148 ms
76,160 KB
testcase_20 AC 124 ms
75,008 KB
testcase_21 AC 123 ms
74,112 KB
testcase_22 AC 159 ms
76,160 KB
testcase_23 AC 82 ms
67,456 KB
testcase_24 AC 82 ms
67,200 KB
testcase_25 AC 146 ms
76,160 KB
testcase_26 AC 162 ms
76,544 KB
testcase_27 AC 224 ms
76,032 KB
testcase_28 AC 219 ms
76,416 KB
testcase_29 AC 224 ms
76,288 KB
testcase_30 AC 221 ms
76,288 KB
testcase_31 AC 218 ms
76,032 KB
testcase_32 AC 219 ms
76,288 KB
testcase_33 AC 226 ms
76,416 KB
testcase_34 AC 205 ms
76,160 KB
testcase_35 AC 208 ms
76,544 KB
testcase_36 AC 218 ms
76,416 KB
testcase_37 AC 436 ms
76,288 KB
testcase_38 AC 444 ms
76,416 KB
testcase_39 AC 447 ms
76,672 KB
testcase_40 AC 461 ms
76,800 KB
testcase_41 AC 450 ms
76,288 KB
testcase_42 AC 447 ms
76,288 KB
testcase_43 AC 435 ms
76,416 KB
testcase_44 AC 445 ms
76,544 KB
testcase_45 AC 447 ms
76,288 KB
testcase_46 AC 480 ms
76,672 KB
testcase_47 AC 441 ms
76,800 KB
testcase_48 AC 452 ms
76,160 KB
testcase_49 AC 446 ms
76,928 KB
testcase_50 AC 459 ms
76,800 KB
testcase_51 AC 439 ms
76,288 KB
testcase_52 AC 449 ms
76,288 KB
testcase_53 AC 458 ms
76,544 KB
testcase_54 AC 446 ms
76,544 KB
testcase_55 AC 472 ms
76,416 KB
testcase_56 AC 460 ms
76,672 KB
testcase_57 AC 464 ms
76,544 KB
testcase_58 AC 460 ms
76,544 KB
testcase_59 AC 494 ms
76,032 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