結果
問題 | No.1409 Simple Math in yukicoder |
ユーザー | Sooh317 |
提出日時 | 2021-02-26 22:40:07 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,040 bytes |
コンパイル時間 | 2,030 ms |
コンパイル使用メモリ | 201,168 KB |
実行使用メモリ | 13,636 KB |
最終ジャッジ日時 | 2024-10-02 15:23:41 |
合計ジャッジ時間 | 60,602 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,636 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 551 ms
6,820 KB |
testcase_08 | AC | 1,893 ms
6,820 KB |
testcase_09 | AC | 486 ms
6,820 KB |
testcase_10 | AC | 1,505 ms
6,816 KB |
testcase_11 | AC | 1,869 ms
6,820 KB |
testcase_12 | AC | 1,432 ms
6,816 KB |
testcase_13 | AC | 554 ms
6,816 KB |
testcase_14 | AC | 429 ms
6,816 KB |
testcase_15 | AC | 660 ms
6,820 KB |
testcase_16 | AC | 701 ms
6,816 KB |
testcase_17 | TLE | - |
testcase_18 | AC | 1,235 ms
6,816 KB |
testcase_19 | AC | 1,328 ms
6,820 KB |
testcase_20 | AC | 1,068 ms
6,816 KB |
testcase_21 | AC | 849 ms
6,820 KB |
testcase_22 | AC | 1,602 ms
6,820 KB |
testcase_23 | AC | 330 ms
6,816 KB |
testcase_24 | AC | 261 ms
6,816 KB |
testcase_25 | AC | 1,549 ms
6,820 KB |
testcase_26 | AC | 1,680 ms
6,820 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; #pragma region atcoder //#include <atcoder/modint> //using namespace atcoder; //using mint = modint998244353; //using mint = modint1000000007; #pragma endregion #pragma region debug for var, v, vv #define debug(var) do{std::cerr << #var << " : ";view(var);}while(0) template<typename T> void view(T e){std::cerr << e << std::endl;} template<typename T> void view(const std::vector<T>& v){for(const auto& e : v){ std::cerr << e << " "; } std::cerr << std::endl;} template<typename T> void view(const std::vector<std::vector<T> >& vv){cerr << endl;int cnt = 0;for(const auto& v : vv){cerr << cnt << "th : "; view(v); cnt++;} cerr << endl;} #pragma endregion using ll = long long; const ll mod = 1000000007; const int inf = 1001001001; const ll INF = 1001001001001001001ll; int dx[]={1,0,-1,0}; int dy[]={0,1,0,-1}; template<class T, class K>bool chmax(T &a, const K b) { if (a<b) { a=b; return 1; } return 0; } template<class T, class K>bool chmin(T &a, const K b) { if (b<a) { a=b; return 1; } return 0; } ll rudiv(ll a, ll b) { return a/b+((a^b)>0&&a%b); } // 20 / 3 == 7 ll rddiv(ll a, ll b) { return a/b-((a^b)<0&&a%b); } // -20 / 3 == -7 ll power(ll a, ll p){ll ret = 1; while(p){if(p & 1){ret = ret * a;} a = a * a; p >>= 1;} return ret;} ll modpow(ll a, ll p, ll m){ll ret = 1; while(p){if(p & 1){ret = ret * a % m;} a = a * a % m; p >>= 1;} return ret;} /*---------------------------------------------------------------------------------------------------------------------------------*/ void solve(){ int v, x; scanf("%d %d", &v, &x); int p = v * x + 1; printf("%d ", 1); for(int i = 2; i <= x*v; i++){ if(modpow(i, x, p) == 1) printf("%d ", i); } printf("\n"); } int main(){ //cin.tie(nullptr); //ios::sync_with_stdio(false); //cout << fixed << setprecision(20); int t; scanf("%d", &t); while(t--) solve(); } /* * review your code when you get WA (typo? index?) * int overflow, array bounds * special cases (n=1?) */