結果

問題 No.1409 Simple Math in yukicoder
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-07-28 05:15:09
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 527 bytes
コンパイル時間 455 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 77,304 KB
最終ジャッジ日時 2024-07-28 05:15:47
合計ジャッジ時間 21,300 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
57,472 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 37 ms
51,712 KB
testcase_04 AC 41 ms
51,968 KB
testcase_05 AC 38 ms
52,224 KB
testcase_06 AC 39 ms
51,840 KB
testcase_07 AC 677 ms
61,824 KB
testcase_08 TLE -
testcase_09 AC 632 ms
61,440 KB
testcase_10 AC 1,821 ms
66,944 KB
testcase_11 TLE -
testcase_12 AC 1,734 ms
66,944 KB
testcase_13 AC 688 ms
61,568 KB
testcase_14 AC 570 ms
61,952 KB
testcase_15 AC 808 ms
62,720 KB
testcase_16 AC 866 ms
62,976 KB
testcase_17 TLE -
testcase_18 AC 1,500 ms
67,268 KB
testcase_19 AC 1,600 ms
67,984 KB
testcase_20 AC 1,306 ms
65,632 KB
testcase_21 AC 1,041 ms
64,592 KB
testcase_22 AC 1,906 ms
68,056 KB
testcase_23 AC 451 ms
61,332 KB
testcase_24 AC 346 ms
61,752 KB
testcase_25 AC 1,871 ms
68,792 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
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 #

## https://yukicoder.me/problems/no/1409


def solve(V, X):
    array = []
    for p in range(1, V * X  +1):
        a = pow(p, X, V * X + 1)
        if a == 1:
            array.append(p)
        if len(array) == X:
            break
    return " ".join(map(str, array))


def main():
    T = int(input())
    answers = []
    for  _ in range(T):
        V, X = map(int, input().split())
        ans = solve(V, X)
        answers.append(ans)

    for ans in answers:
        print(ans)



if __name__ == '__main__':
    main()
0