結果
問題 | No.1409 Simple Math in yukicoder |
ユーザー | sapphire__15 |
提出日時 | 2021-02-27 11:20:46 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,363 bytes |
コンパイル時間 | 1,342 ms |
コンパイル使用メモリ | 123,464 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-02 17:22:17 |
合計ジャッジ時間 | 87,087 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 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 | 107 ms
5,248 KB |
testcase_08 | AC | 345 ms
5,248 KB |
testcase_09 | AC | 72 ms
5,248 KB |
testcase_10 | AC | 270 ms
5,248 KB |
testcase_11 | AC | 353 ms
5,248 KB |
testcase_12 | AC | 268 ms
5,248 KB |
testcase_13 | AC | 105 ms
5,248 KB |
testcase_14 | AC | 98 ms
5,248 KB |
testcase_15 | AC | 133 ms
5,248 KB |
testcase_16 | AC | 115 ms
5,248 KB |
testcase_17 | AC | 437 ms
5,248 KB |
testcase_18 | AC | 214 ms
5,248 KB |
testcase_19 | AC | 242 ms
5,248 KB |
testcase_20 | AC | 180 ms
5,248 KB |
testcase_21 | AC | 169 ms
5,248 KB |
testcase_22 | AC | 285 ms
5,248 KB |
testcase_23 | AC | 59 ms
5,248 KB |
testcase_24 | AC | 56 ms
5,248 KB |
testcase_25 | AC | 231 ms
5,248 KB |
testcase_26 | AC | 295 ms
5,248 KB |
testcase_27 | AC | 533 ms
5,248 KB |
testcase_28 | AC | 502 ms
5,248 KB |
testcase_29 | AC | 549 ms
5,248 KB |
testcase_30 | AC | 515 ms
5,248 KB |
testcase_31 | AC | 520 ms
5,248 KB |
testcase_32 | AC | 499 ms
5,248 KB |
testcase_33 | AC | 504 ms
5,248 KB |
testcase_34 | AC | 470 ms
5,248 KB |
testcase_35 | AC | 486 ms
5,248 KB |
testcase_36 | AC | 524 ms
5,248 KB |
testcase_37 | TLE | - |
testcase_38 | TLE | - |
testcase_39 | TLE | - |
testcase_40 | TLE | - |
testcase_41 | TLE | - |
testcase_42 | TLE | - |
testcase_43 | TLE | - |
testcase_44 | TLE | - |
testcase_45 | TLE | - |
testcase_46 | TLE | - |
testcase_47 | TLE | - |
testcase_48 | TLE | - |
testcase_49 | TLE | - |
testcase_50 | TLE | - |
testcase_51 | TLE | - |
testcase_52 | TLE | - |
testcase_53 | TLE | - |
testcase_54 | TLE | - |
testcase_55 | TLE | - |
testcase_56 | TLE | - |
testcase_57 | TLE | - |
testcase_58 | TLE | - |
testcase_59 | TLE | - |
ソースコード
#include <iostream> #include <algorithm> #include <map> #include <set> #include <queue> #include <bitset> #include <climits> #include <cmath> #include <complex> #include <functional> #include <cassert> #include <stack> #include <numeric> #include <iomanip> #include <limits> typedef int64_t ll; typedef std::pair<int, int> Pii; typedef std::pair<ll, ll> Pll; typedef std::pair<double, double> Pdd; #define rip(_i, _n, _s) for (int _i = (_s); _i < (int)(_n); _i++) #define all(_l) _l.begin(), _l.end() #define rall(_l) _l.rbegin(), _l.rend() #define MM << " " << template<typename _T> using MaxHeap = std::priority_queue<_T>; template<typename _T> using MinHeap = std::priority_queue<_T, std::vector<_T>, std::greater<_T>>; template<typename _T> inline bool chmax(_T &_l, const _T _b) { if (_l < _b) { _l = _b; return true; } return false; } template<typename _T> inline bool chmin(_T &_l, const _T _b) { if (_l > _b) { _l = _b; return true; } return false; } // # ifdef LOCAL_DEBUG template<typename _T> void vdeb(const std::vector<_T> &bb) { for (unsigned int i = 0;i < bb.size();i++) { if (i == bb.size() - 1) std::cout << bb[i]; else std::cout << bb[i] << ' '; } std::cout << '\n'; } template<typename _T> void vdeb(const std::vector<std::vector<_T>> &bb) { for (unsigned int i = 0;i < bb.size();i++) { std::cout << i << ' '; vdeb(bb[i]); } std::cout << '\n'; } // # endif using namespace std; long long modpow(long long _n, long long _k, long long _p) { long long _ret = 1, _now = _n; while(_k) { if(_k&1) _ret = _ret * _now % _p; _now = _now * _now % _p; _k >>= 1; } return _ret; } void solve() { int v, x; cin >> v >> x; int p = v*x + 1, an = 1; rip(i,p,1) { int now = 1; bool flg = true; rip(j,x-1,0) { now = now*i%p; if(now%p == 1) { flg = false; break; } } if(flg) { now = i*now%p; if(now == 1) { an = i; break; } } } vector<int> ans(x); ans[0] = 1; rip(i,x,1) ans[i] = ans[i-1]*an%p; sort(all(ans)); vdeb(ans); } int main() { int t; cin >> t; rip(i,t,0) solve(); }