結果
問題 | No.1409 Simple Math in yukicoder |
ユーザー | m_tsubasa |
提出日時 | 2021-02-26 23:17:03 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 469 bytes |
コンパイル時間 | 1,952 ms |
コンパイル使用メモリ | 201,576 KB |
実行使用メモリ | 10,496 KB |
最終ジャッジ日時 | 2024-10-02 16:15:04 |
合計ジャッジ時間 | 63,040 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,496 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 546 ms
5,248 KB |
testcase_08 | AC | 1,875 ms
5,248 KB |
testcase_09 | AC | 484 ms
5,248 KB |
testcase_10 | AC | 1,491 ms
5,248 KB |
testcase_11 | AC | 1,845 ms
5,248 KB |
testcase_12 | AC | 1,415 ms
5,248 KB |
testcase_13 | AC | 551 ms
5,248 KB |
testcase_14 | AC | 423 ms
5,248 KB |
testcase_15 | AC | 657 ms
5,248 KB |
testcase_16 | AC | 695 ms
5,248 KB |
testcase_17 | TLE | - |
testcase_18 | AC | 1,223 ms
5,248 KB |
testcase_19 | AC | 1,311 ms
5,248 KB |
testcase_20 | AC | 1,058 ms
5,248 KB |
testcase_21 | AC | 838 ms
5,248 KB |
testcase_22 | AC | 1,583 ms
5,248 KB |
testcase_23 | AC | 327 ms
5,248 KB |
testcase_24 | AC | 259 ms
5,248 KB |
testcase_25 | AC | 1,531 ms
5,248 KB |
testcase_26 | AC | 1,673 ms
5,248 KB |
testcase_27 | TLE | - |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | TLE | - |
testcase_32 | TLE | - |
testcase_33 | TLE | - |
testcase_34 | TLE | - |
testcase_35 | TLE | - |
testcase_36 | TLE | - |
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 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; long long modpow(long long b, long long x, long long mod) { long long res = 1; while (x) { if (x & 1) (res *= b) %= mod; (b *= b) %= mod; x >>= 1; } return res; } int x, v; int main() { int t; cin >> t; while (t--) { cin >> v >> x; int cnt = 0; int pr = v * x + 1; for (int i = 1; cnt < x; ++i) if (modpow(i, x, pr) == 1) cout << i << " \n"[++cnt == x]; } return 0; }