結果

問題 No.1409 Simple Math in yukicoder
ユーザー milanis48663220milanis48663220
提出日時 2021-02-28 16:12:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 2,146 bytes
コンパイル時間 1,128 ms
コンパイル使用メモリ 102,340 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-02 18:16:34
合計ジャッジ時間 30,379 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 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 14 ms
6,820 KB
testcase_08 AC 46 ms
6,820 KB
testcase_09 AC 13 ms
6,816 KB
testcase_10 AC 37 ms
6,816 KB
testcase_11 AC 44 ms
6,816 KB
testcase_12 AC 35 ms
6,820 KB
testcase_13 AC 14 ms
6,820 KB
testcase_14 AC 11 ms
6,816 KB
testcase_15 AC 17 ms
6,820 KB
testcase_16 AC 17 ms
6,816 KB
testcase_17 AC 60 ms
6,816 KB
testcase_18 AC 28 ms
6,816 KB
testcase_19 AC 34 ms
6,820 KB
testcase_20 AC 26 ms
6,816 KB
testcase_21 AC 22 ms
6,816 KB
testcase_22 AC 37 ms
6,816 KB
testcase_23 AC 10 ms
6,820 KB
testcase_24 AC 7 ms
6,816 KB
testcase_25 AC 36 ms
6,816 KB
testcase_26 AC 40 ms
6,816 KB
testcase_27 AC 67 ms
6,820 KB
testcase_28 AC 65 ms
6,816 KB
testcase_29 AC 66 ms
6,816 KB
testcase_30 AC 67 ms
6,816 KB
testcase_31 AC 67 ms
6,816 KB
testcase_32 AC 65 ms
6,816 KB
testcase_33 AC 66 ms
6,816 KB
testcase_34 AC 64 ms
6,816 KB
testcase_35 AC 68 ms
6,816 KB
testcase_36 AC 68 ms
6,816 KB
testcase_37 AC 123 ms
6,816 KB
testcase_38 AC 123 ms
6,816 KB
testcase_39 AC 123 ms
6,816 KB
testcase_40 AC 124 ms
6,816 KB
testcase_41 AC 123 ms
6,816 KB
testcase_42 AC 123 ms
6,820 KB
testcase_43 AC 124 ms
6,816 KB
testcase_44 AC 123 ms
6,820 KB
testcase_45 AC 125 ms
6,816 KB
testcase_46 AC 123 ms
6,816 KB
testcase_47 AC 124 ms
6,816 KB
testcase_48 AC 124 ms
6,816 KB
testcase_49 AC 124 ms
6,816 KB
testcase_50 AC 124 ms
6,816 KB
testcase_51 AC 124 ms
6,820 KB
testcase_52 AC 124 ms
6,816 KB
testcase_53 AC 124 ms
6,816 KB
testcase_54 AC 123 ms
6,820 KB
testcase_55 AC 124 ms
6,820 KB
testcase_56 AC 124 ms
6,820 KB
testcase_57 AC 131 ms
6,816 KB
testcase_58 AC 131 ms
6,820 KB
testcase_59 AC 131 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <numeric>
#include <cassert>

#define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl;
#define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl;

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }

using namespace std;
typedef long long ll;

void validate(int v, int x, vector<ll> a){
    assert(a.size() == x);
    int p = x*v+1;
    vector<int> tmp(x, 1);
    for(int i = 1; i <= x; i++){
        // cout << i << ' ';
        for(int j = 0; j < x; j++) tmp[j] = (tmp[j]*a[j])%p;
        int sum = accumulate(tmp.begin(), tmp.end(), 0);
        // cout << i << ' ' << x << endl;
        // for(int s : tmp) cout << s << ' ';
        // cout << endl;
        // cout << sum%p << ' ' << p << endl;
        if(i == x) assert(sum%p == x);
        else assert(sum%p == 0);
    }
}

ll pow(ll a, ll n, ll MOD) {
	ll ans = 1;
	ll tmp = a;
	for (int i = 0; i <= 60; i++) {
		ll m = (ll)1 << i;
		if (m & n) {
		ans *= tmp;
		ans %= MOD;
		}
		tmp *= tmp;
		tmp %= MOD;
	}
	return ans;
}


void solve(){
    int v, x; cin >> v >> x;
    int p = x*v+1;
    if(x == 1){
        cout << 1 << endl;
        return;
    }
    int a = -1;
    for(int i = 2; i < p; i++){
        bool ok = true;
        ll pw = pow(i, v, p);
        ll tmp = 1;
        for(int j = 1; j < x; j++){
            tmp = (tmp*pw)%p;
            if(tmp == 1) ok = false;
        }
        if(ok){
            a = i;
            break;
        }
    }
    assert(a != -1);
    vector<int> ans;
    for(int i = 0; i < x; i++){
        ans.push_back(pow(a, i*v, p));
    }
    sort(ans.begin(), ans.end());
    // validate(v, x, ans);
    for(int x : ans) cout << x << ' ';
    cout << endl;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    int t; cin >> t;
    while(t--) solve();
}
0