結果

問題 No.1409 Simple Math in yukicoder
ユーザー 👑 NachiaNachia
提出日時 2021-02-26 23:23:11
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 22 ms / 2,000 ms
コード長 1,045 bytes
コンパイル時間 2,362 ms
コンパイル使用メモリ 208,784 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-07-25 23:10:10
合計ジャッジ時間 28,806 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 4 ms
4,376 KB
testcase_08 AC 9 ms
4,380 KB
testcase_09 AC 4 ms
4,380 KB
testcase_10 AC 8 ms
4,376 KB
testcase_11 AC 9 ms
4,380 KB
testcase_12 AC 7 ms
4,376 KB
testcase_13 AC 4 ms
4,380 KB
testcase_14 AC 4 ms
4,380 KB
testcase_15 AC 4 ms
4,380 KB
testcase_16 AC 5 ms
4,380 KB
testcase_17 AC 12 ms
4,380 KB
testcase_18 AC 6 ms
4,376 KB
testcase_19 AC 7 ms
4,376 KB
testcase_20 AC 6 ms
4,380 KB
testcase_21 AC 5 ms
4,380 KB
testcase_22 AC 8 ms
4,376 KB
testcase_23 AC 3 ms
4,380 KB
testcase_24 AC 3 ms
4,380 KB
testcase_25 AC 8 ms
4,380 KB
testcase_26 AC 8 ms
4,376 KB
testcase_27 AC 13 ms
4,380 KB
testcase_28 AC 12 ms
4,380 KB
testcase_29 AC 13 ms
4,376 KB
testcase_30 AC 13 ms
4,380 KB
testcase_31 AC 13 ms
4,380 KB
testcase_32 AC 13 ms
4,380 KB
testcase_33 AC 12 ms
4,384 KB
testcase_34 AC 13 ms
4,380 KB
testcase_35 AC 13 ms
4,376 KB
testcase_36 AC 13 ms
4,376 KB
testcase_37 AC 21 ms
4,380 KB
testcase_38 AC 21 ms
4,380 KB
testcase_39 AC 21 ms
4,376 KB
testcase_40 AC 21 ms
4,376 KB
testcase_41 AC 21 ms
4,384 KB
testcase_42 AC 21 ms
4,380 KB
testcase_43 AC 21 ms
4,376 KB
testcase_44 AC 21 ms
4,380 KB
testcase_45 AC 21 ms
4,380 KB
testcase_46 AC 21 ms
4,380 KB
testcase_47 AC 22 ms
4,380 KB
testcase_48 AC 21 ms
4,376 KB
testcase_49 AC 22 ms
4,380 KB
testcase_50 AC 22 ms
4,376 KB
testcase_51 AC 21 ms
4,380 KB
testcase_52 AC 21 ms
4,380 KB
testcase_53 AC 21 ms
4,380 KB
testcase_54 AC 22 ms
4,380 KB
testcase_55 AC 22 ms
4,380 KB
testcase_56 AC 22 ms
4,380 KB
testcase_57 AC 22 ms
4,380 KB
testcase_58 AC 22 ms
4,380 KB
testcase_59 AC 21 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using LL=long long;
using ULL=unsigned long long;
#define rep(i,n) for(int i=0; i<(n); i++)

vector<pair<ULL,ULL>> factorize(ULL N){
 vector<pair<ULL,ULL>> res;
 for(ULL i=2; i*i<=N; i++){
  if(N%i) continue;
  res.push_back({i,0});
  while(N%i==0){ N/=i; res.back().second++; }
 }
 if(N!=1) res.push_back({N,1});
 return move(res);
}

ULL powm(ULL a,ULL i,ULL m){
  if(i==0) return 1;
  ULL r=powm(a*a%m,i/2,m);
  if(i%2==1) r=r*a%m;
  return r;
}
ULL findg(ULL v,ULL x){
  ULL m=x*v+1;
  auto F=factorize(x*v);
  ULL g=2;
  while(true){
    bool ok=true;
    for(auto f:F) if(powm(g,x*v/f.first,m)==1) ok=false;
    if(ok) break;
    g++;
  }
  return powm(g,v,m);
}

int main(){
  int T; scanf("%d",&T);
  while(T--){
    ULL v,x; scanf("%llu%llu",&v,&x);
    ULL m=v*x+1;
    ULL g=findg(v,x);
    vector<ULL> ans={1}; rep(i,x-1) ans.push_back(ans.back()*g%m);
    sort(ans.begin(),ans.end());
    rep(i,x){ if(i) printf(" "); printf("%u",(unsigned int)ans[i]); } printf("\n");
  }
  return 0;
}
0