結果
問題 | No.1409 Simple Math in yukicoder |
ユーザー | publfl |
提出日時 | 2021-02-26 22:58:37 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,008 bytes |
コンパイル時間 | 520 ms |
コンパイル使用メモリ | 48,896 KB |
実行使用メモリ | 13,632 KB |
最終ジャッジ日時 | 2024-10-02 15:44:55 |
合計ジャッジ時間 | 28,541 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,632 KB |
testcase_01 | AC | 1 ms
6,820 KB |
testcase_02 | AC | 2 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,816 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 147 ms
6,816 KB |
testcase_08 | AC | 580 ms
6,820 KB |
testcase_09 | AC | 171 ms
6,820 KB |
testcase_10 | AC | 434 ms
6,816 KB |
testcase_11 | AC | 624 ms
6,816 KB |
testcase_12 | AC | 448 ms
6,816 KB |
testcase_13 | AC | 162 ms
6,816 KB |
testcase_14 | AC | 141 ms
6,820 KB |
testcase_15 | AC | 203 ms
6,816 KB |
testcase_16 | AC | 255 ms
6,820 KB |
testcase_17 | AC | 855 ms
6,816 KB |
testcase_18 | AC | 359 ms
6,820 KB |
testcase_19 | AC | 418 ms
6,816 KB |
testcase_20 | AC | 336 ms
6,816 KB |
testcase_21 | AC | 273 ms
6,816 KB |
testcase_22 | AC | 539 ms
6,816 KB |
testcase_23 | AC | 113 ms
6,816 KB |
testcase_24 | AC | 82 ms
6,816 KB |
testcase_25 | AC | 526 ms
6,816 KB |
testcase_26 | AC | 547 ms
6,816 KB |
testcase_27 | AC | 942 ms
6,816 KB |
testcase_28 | AC | 881 ms
6,816 KB |
testcase_29 | AC | 928 ms
6,820 KB |
testcase_30 | AC | 935 ms
6,816 KB |
testcase_31 | AC | 880 ms
6,820 KB |
testcase_32 | AC | 897 ms
6,816 KB |
testcase_33 | AC | 823 ms
6,816 KB |
testcase_34 | AC | 882 ms
6,820 KB |
testcase_35 | AC | 908 ms
6,816 KB |
testcase_36 | AC | 896 ms
6,816 KB |
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 <vector> long long int power(long long int a, long long int b, int p) { long long int ans = 1; long long int k = a; while(b) { if(b%2==1) ans*=k, ans%=p; k*=k, k%=p; b/=2; } return ans; } long long int inv(long long int a, int p) { return power(a,p-2,p); } long long int fact[110]; std::vector<int> ans; long long int check[100010]; int main() { fact[0] = 1; int T; scanf("%d",&T); while(T--) { ans.clear(); int a,b; scanf("%d%d",&a,&b); int p = a*b+1; int count = 0; for(int i=1;i<=a*b;i++) check[i] = 0; for(int i=1;i<=a*b;i++) { if(check[i]==0) { long long int t = power(i,b,p); long long int i2 = i; long long int s = t; while(check[i2]==0) { check[i2] = s; if(s==1) count++; if(count>=b) goto u; i2 = (i2*i)%p; s = (s*t)%p; } } } u:; for(int i=1;i<=a*b;i++) if(check[i]==1) ans.push_back(i); for(int i=0;i<ans.size();i++) printf("%d ",ans[i]); printf("\n"); } }