結果
問題 | No.1409 Simple Math in yukicoder |
ユーザー | 沙耶花 |
提出日時 | 2021-02-26 22:56:32 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 587 bytes |
コンパイル時間 | 3,842 ms |
コンパイル使用メモリ | 263,108 KB |
実行使用メモリ | 13,644 KB |
最終ジャッジ日時 | 2024-10-02 15:42:51 |
合計ジャッジ時間 | 32,673 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,644 KB |
testcase_01 | AC | 1 ms
6,824 KB |
testcase_02 | AC | 1 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 460 ms
6,816 KB |
testcase_08 | AC | 1,557 ms
6,820 KB |
testcase_09 | AC | 403 ms
6,816 KB |
testcase_10 | AC | 1,245 ms
6,816 KB |
testcase_11 | AC | 1,657 ms
6,820 KB |
testcase_12 | AC | 1,182 ms
6,816 KB |
testcase_13 | AC | 456 ms
6,820 KB |
testcase_14 | AC | 354 ms
6,824 KB |
testcase_15 | AC | 541 ms
6,816 KB |
testcase_16 | AC | 567 ms
6,816 KB |
testcase_17 | TLE | - |
testcase_18 | AC | 986 ms
6,824 KB |
testcase_19 | AC | 1,114 ms
6,816 KB |
testcase_20 | AC | 887 ms
6,820 KB |
testcase_21 | AC | 694 ms
6,820 KB |
testcase_22 | AC | 1,312 ms
6,820 KB |
testcase_23 | AC | 282 ms
6,816 KB |
testcase_24 | AC | 219 ms
6,820 KB |
testcase_25 | AC | 1,277 ms
6,820 KB |
testcase_26 | AC | 1,375 ms
6,816 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 <stdio.h> #include <atcoder/all> #include <bits/stdc++.h> using namespace std; using namespace atcoder; using mint = modint1000000007; #define rep(i,n) for (int i = 0; i < (n); ++i) #define Inf 1000000001 int main(){ int T; cin>>T; rep(_,T){ int v,x; cin>>v>>x; vector<int> ans(v*x); rep(i,v*x){ ans[i] = pow_mod(i+1,v,v*x+1); } sort(ans.begin(),ans.end()); ans.erase(unique(ans.begin(),ans.end()),ans.end()); //cout<<ans.size()<<endl; rep(i,min(x,(int)ans.size())){ if(i!=0)cout<<' '; cout<<ans[i]; } cout<<endl; } return 0; }