結果

問題 No.1409 Simple Math in yukicoder
ユーザー convexineqconvexineq
提出日時 2021-02-27 06:49:54
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 389 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 81,884 KB
実行使用メモリ 83,904 KB
最終ジャッジ日時 2024-10-02 17:00:35
合計ジャッジ時間 32,304 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
59,444 KB
testcase_01 AC 40 ms
53,180 KB
testcase_02 AC 39 ms
52,256 KB
testcase_03 AC 41 ms
51,892 KB
testcase_04 AC 41 ms
52,156 KB
testcase_05 RE -
testcase_06 AC 40 ms
52,692 KB
testcase_07 AC 254 ms
68,276 KB
testcase_08 AC 732 ms
76,548 KB
testcase_09 AC 225 ms
68,168 KB
testcase_10 AC 566 ms
76,488 KB
testcase_11 AC 740 ms
76,668 KB
testcase_12 AC 527 ms
76,848 KB
testcase_13 AC 237 ms
68,404 KB
testcase_14 AC 220 ms
68,212 KB
testcase_15 AC 321 ms
74,108 KB
testcase_16 AC 320 ms
74,532 KB
testcase_17 AC 948 ms
76,904 KB
testcase_18 AC 476 ms
76,304 KB
testcase_19 AC 536 ms
76,456 KB
testcase_20 AC 437 ms
76,732 KB
testcase_21 AC 389 ms
77,024 KB
testcase_22 AC 647 ms
76,756 KB
testcase_23 AC 174 ms
68,036 KB
testcase_24 AC 146 ms
65,768 KB
testcase_25 AC 592 ms
76,404 KB
testcase_26 AC 642 ms
76,664 KB
testcase_27 AC 1,011 ms
76,756 KB
testcase_28 AC 1,013 ms
76,896 KB
testcase_29 AC 1,004 ms
76,952 KB
testcase_30 AC 1,036 ms
76,956 KB
testcase_31 AC 1,033 ms
76,408 KB
testcase_32 AC 966 ms
76,472 KB
testcase_33 AC 976 ms
76,548 KB
testcase_34 AC 993 ms
76,632 KB
testcase_35 AC 1,051 ms
76,104 KB
testcase_36 AC 1,050 ms
76,284 KB
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 #

T = int(input())
for _ in range(T):
    v,x = map(int,input().split())
    p = v*x+1
    for r in range(2,p):
        if pow(r,v,p) == 1:
            continue
        else:
            rr = r
            for i in range(p-3):
                rr = rr*r%p
                if rr == 1: break
            else:
                break
    a = [pow(r,i*v,p) for i in range(x)]
    print(*sorted(a))
0