結果

問題 No.1409 Simple Math in yukicoder
ユーザー PSL24251284PSL24251284
提出日時 2021-07-01 21:46:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 235 ms / 2,000 ms
コード長 259 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,568 KB
最終ジャッジ日時 2024-06-28 10:58:10
合計ジャッジ時間 34,220 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 36 ms
51,840 KB
testcase_02 AC 38 ms
51,584 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 AC 38 ms
51,840 KB
testcase_05 AC 38 ms
51,840 KB
testcase_06 AC 39 ms
51,840 KB
testcase_07 AC 67 ms
66,048 KB
testcase_08 AC 115 ms
76,544 KB
testcase_09 AC 67 ms
66,176 KB
testcase_10 AC 107 ms
76,356 KB
testcase_11 AC 115 ms
76,568 KB
testcase_12 AC 105 ms
75,920 KB
testcase_13 AC 69 ms
65,920 KB
testcase_14 AC 65 ms
65,280 KB
testcase_15 AC 83 ms
71,808 KB
testcase_16 AC 82 ms
72,064 KB
testcase_17 AC 130 ms
76,444 KB
testcase_18 AC 94 ms
74,496 KB
testcase_19 AC 103 ms
75,844 KB
testcase_20 AC 93 ms
74,268 KB
testcase_21 AC 86 ms
72,704 KB
testcase_22 AC 107 ms
76,088 KB
testcase_23 AC 66 ms
65,536 KB
testcase_24 AC 60 ms
63,488 KB
testcase_25 AC 108 ms
75,900 KB
testcase_26 AC 111 ms
76,160 KB
testcase_27 AC 137 ms
76,024 KB
testcase_28 AC 130 ms
76,116 KB
testcase_29 AC 136 ms
76,160 KB
testcase_30 AC 130 ms
76,160 KB
testcase_31 AC 137 ms
76,288 KB
testcase_32 AC 134 ms
76,564 KB
testcase_33 AC 135 ms
76,244 KB
testcase_34 AC 132 ms
76,208 KB
testcase_35 AC 138 ms
76,428 KB
testcase_36 AC 139 ms
76,488 KB
testcase_37 AC 219 ms
76,160 KB
testcase_38 AC 215 ms
75,820 KB
testcase_39 AC 217 ms
75,936 KB
testcase_40 AC 215 ms
76,560 KB
testcase_41 AC 218 ms
76,240 KB
testcase_42 AC 222 ms
76,080 KB
testcase_43 AC 229 ms
76,160 KB
testcase_44 AC 215 ms
76,288 KB
testcase_45 AC 229 ms
76,288 KB
testcase_46 AC 220 ms
76,032 KB
testcase_47 AC 221 ms
76,388 KB
testcase_48 AC 223 ms
76,160 KB
testcase_49 AC 227 ms
76,532 KB
testcase_50 AC 220 ms
76,288 KB
testcase_51 AC 224 ms
76,068 KB
testcase_52 AC 223 ms
76,472 KB
testcase_53 AC 218 ms
76,416 KB
testcase_54 AC 223 ms
76,460 KB
testcase_55 AC 221 ms
76,276 KB
testcase_56 AC 221 ms
76,528 KB
testcase_57 AC 235 ms
76,540 KB
testcase_58 AC 233 ms
76,160 KB
testcase_59 AC 233 ms
76,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for _ in range(T):
    v,x = map(int,input().split())
    mod = v*x+1
    a = set()
    i = 1
    while len(a) < x:
        c = pow(i,v,mod)
        if c not in a:
            a.add(c)
        i += 1
    a = list(a)
    a.sort()
    print(*a)
0