結果
問題 | No.1409 Simple Math in yukicoder |
ユーザー | 👑 emthrm |
提出日時 | 2021-02-27 07:21:01 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,422 bytes |
コンパイル時間 | 2,108 ms |
コンパイル使用メモリ | 205,192 KB |
実行使用メモリ | 10,496 KB |
最終ジャッジ日時 | 2024-10-02 17:04:59 |
合計ジャッジ時間 | 29,713 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,120 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 | 183 ms
5,248 KB |
testcase_08 | AC | 595 ms
5,248 KB |
testcase_09 | AC | 154 ms
5,248 KB |
testcase_10 | AC | 465 ms
5,248 KB |
testcase_11 | AC | 569 ms
5,248 KB |
testcase_12 | AC | 439 ms
5,248 KB |
testcase_13 | AC | 175 ms
5,248 KB |
testcase_14 | AC | 143 ms
5,248 KB |
testcase_15 | AC | 214 ms
5,248 KB |
testcase_16 | AC | 225 ms
5,248 KB |
testcase_17 | AC | 773 ms
5,248 KB |
testcase_18 | AC | 387 ms
5,248 KB |
testcase_19 | AC | 421 ms
5,248 KB |
testcase_20 | AC | 345 ms
5,248 KB |
testcase_21 | AC | 269 ms
5,248 KB |
testcase_22 | AC | 507 ms
5,248 KB |
testcase_23 | AC | 107 ms
5,248 KB |
testcase_24 | AC | 85 ms
5,248 KB |
testcase_25 | AC | 492 ms
5,248 KB |
testcase_26 | AC | 529 ms
5,248 KB |
testcase_27 | AC | 901 ms
5,248 KB |
testcase_28 | AC | 829 ms
5,248 KB |
testcase_29 | AC | 865 ms
5,248 KB |
testcase_30 | AC | 860 ms
5,248 KB |
testcase_31 | AC | 890 ms
5,248 KB |
testcase_32 | AC | 811 ms
5,248 KB |
testcase_33 | AC | 863 ms
5,248 KB |
testcase_34 | AC | 834 ms
5,248 KB |
testcase_35 | AC | 880 ms
5,248 KB |
testcase_36 | AC | 910 ms
5,248 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 | -- | - |
ソースコード
#define _USE_MATH_DEFINES #include <bits/stdc++.h> using namespace std; #define FOR(i,m,n) for(int i=(m);i<(n);++i) #define REP(i,n) FOR(i,0,n) #define ALL(v) (v).begin(),(v).end() using ll = long long; constexpr int INF = 0x3f3f3f3f; constexpr long long LINF = 0x3f3f3f3f3f3f3f3fLL; constexpr double EPS = 1e-8; constexpr int MOD = 1000000007; // constexpr int MOD = 998244353; constexpr int dy[] = {1, 0, -1, 0}, dx[] = {0, -1, 0, 1}; constexpr int dy8[] = {1, 1, 0, -1, -1, -1, 0, 1}, dx8[] = {0, -1, -1, -1, 0, 1, 1, 1}; template <typename T, typename U> inline bool chmax(T &a, U b) { return a < b ? (a = b, true) : false; } template <typename T, typename U> inline bool chmin(T &a, U b) { return a > b ? (a = b, true) : false; } struct IOSetup { IOSetup() { std::cin.tie(nullptr); std::ios_base::sync_with_stdio(false); std::cout << fixed << setprecision(20); } } iosetup; std::vector<int> prime_sieve(int n, bool get_only_prime) { std::vector<int> prime, smallest_prime_factor(n + 1); std::iota(smallest_prime_factor.begin(), smallest_prime_factor.end(), 0); for (int i = 2; i <= n; ++i) { if (smallest_prime_factor[i] == i) prime.emplace_back(i); for (int p : prime) { if (i * p > n || p > smallest_prime_factor[i]) break; smallest_prime_factor[i * p] = p; } } return get_only_prime ? prime : smallest_prime_factor; } long long mod_pow(long long base, long long exponent, int mod) { base %= mod; long long res = 1; while (exponent > 0) { if (exponent & 1) (res *= base) %= mod; (base *= base) %= mod; exponent >>= 1; } return res; } std::vector<int> enumerate_kth_power(int n, int k, int m) { std::vector<int> res(n + 1, 0); std::vector<int> smallest_prime_factor = prime_sieve(n, false); for (int i = 1; i <= n; ++i) { if (smallest_prime_factor[i] == i) { res[i] = mod_pow(i, k, m); } else { res[i] = static_cast<long long>(res[smallest_prime_factor[i]]) * res[i / smallest_prime_factor[i]] % m; } } return res; } int main() { int t; std::cin >> t; while (t--) { int v, x; std::cin >> v >> x; int p = x * v + 1; std::vector<int> pw = enumerate_kth_power(p - 1, x, p); std::vector<int> a; a.reserve(x); for (int i = 1; i < p; ++i) { if (pw[i] == 1) a.emplace_back(i); } for (int i = 0; i < x; ++i) std::cout << a[i] << " \n"[i + 1 == x]; } return 0; }