結果
問題 | No.3046 yukicoderの過去問 |
ユーザー | kotatsugame |
提出日時 | 2020-03-09 03:55:53 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 541 bytes |
コンパイル時間 | 512 ms |
コンパイル使用メモリ | 36,608 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-07 20:34:38 |
合計ジャッジ時間 | 4,583 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 1,405 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
コンパイルメッセージ
main.cpp:20:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 20 | main() | ^~~~
ソースコード
#pragma GCC optimize("O3") #pragma GCC target("avx,avx2,sse4") #include<cstdio> using namespace std; const int mod=1e9+7; int K,N; long dp[100001]; char x[100001]; char buf[7<<17];int sz; inline void rd(int&N) { N=0; for(;;) { char k=buf[sz++]; if(k<'0')break; N=N*10+k-'0'; } } main() { fread(buf,1,7<<17,stdin); rd(N); rd(K); for(int i=0;i<N;i++) { int X; rd(X); x[X]=1; } dp[0]=1; for(int i=0;i<K;i++) { int now=dp[i]%mod; for(int j=1;j<=K-i;j++) { dp[i+j]+=x[j]*now; } } printf("%d\n",dp[K]%mod); }