結果
問題 | No.2120 場合の数の下8桁 |
ユーザー | kotatsugame |
提出日時 | 2022-11-04 21:46:38 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 610 bytes |
コンパイル時間 | 719 ms |
コンパイル使用メモリ | 75,904 KB |
実行使用メモリ | 19,280 KB |
最終ジャッジ日時 | 2024-07-18 19:30:54 |
合計ジャッジ時間 | 4,002 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 119 ms
19,272 KB |
testcase_01 | AC | 117 ms
19,148 KB |
testcase_02 | AC | 114 ms
19,276 KB |
testcase_03 | AC | 115 ms
19,276 KB |
testcase_04 | AC | 115 ms
19,152 KB |
testcase_05 | AC | 116 ms
19,148 KB |
testcase_06 | AC | 120 ms
19,148 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 117 ms
19,276 KB |
testcase_10 | AC | 120 ms
19,148 KB |
testcase_11 | AC | 123 ms
19,272 KB |
testcase_12 | AC | 118 ms
19,148 KB |
testcase_13 | AC | 116 ms
19,272 KB |
testcase_14 | AC | 114 ms
19,148 KB |
testcase_15 | AC | 117 ms
19,148 KB |
testcase_16 | AC | 119 ms
19,148 KB |
testcase_17 | AC | 121 ms
19,148 KB |
testcase_18 | WA | - |
testcase_19 | AC | 121 ms
19,148 KB |
コンパイルメッセージ
main.cpp:21:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 21 | main() | ^~~~
ソースコード
#include<iostream> #include<iomanip> #include<vector> using namespace std; const int LIM=1e7; bool isp[LIM+1]; vector<int>ps; vector<int>val; void f(int N,int coef) { for(int i=0;i<ps.size();i++) { int n=N,c=0; while(n>=ps[i]) { c+=n/=ps[i]; } val[i]+=c*coef; } } main() { for(int i=2;i<=LIM;i++)if(!isp[i]) { ps.push_back(i); val.push_back(0); for(int j=i+i;j<=LIM;j+=i)isp[j]=true; } int M,N;cin>>M>>N; f(M,1); f(N,-1); f(M-N,-1); long long ans=1; for(int i=0;i<ps.size();i++) { for(int j=0;j<val[i];j++)ans=ans*ps[i]%(int)1e8; } cout<<setw(8)<<setfill('0')<<ans<<endl; }