結果
問題 | No.1172 Add Recursive Sequence |
ユーザー | kiyoshi0205 |
提出日時 | 2021-06-13 04:00:10 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 3,247 ms / 4,000 ms |
コード長 | 594 bytes |
コンパイル時間 | 218 ms |
コンパイル使用メモリ | 30,848 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-01 02:48:31 |
合計ジャッジ時間 | 10,321 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 0 ms
6,940 KB |
testcase_03 | AC | 0 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 23 ms
6,940 KB |
testcase_11 | AC | 21 ms
6,940 KB |
testcase_12 | AC | 76 ms
6,940 KB |
testcase_13 | AC | 73 ms
6,944 KB |
testcase_14 | AC | 924 ms
6,944 KB |
testcase_15 | AC | 3,212 ms
6,940 KB |
testcase_16 | AC | 948 ms
6,940 KB |
testcase_17 | AC | 3,247 ms
6,940 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:9:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 9 | scanf("%d %d %d",&K,&N,&M); | ~~~~~^~~~~~~~~~~~~~~~~~~~~ main.cpp:10:28: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 10 | for(int i=0;i<K;++i)scanf("%d",&a[i]); | ~~~~~^~~~~~~~~~~~ main.cpp:11:28: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 11 | for(int i=0;i<K;++i)scanf("%lld",&c[i]); | ~~~~~^~~~~~~~~~~~~~ main.cpp:19:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 19 | scanf("%d %d",&l,&r); | ~~~~~^~~~~~~~~~~~~~~
ソースコード
#pragma GCC target("avx2") #pragma GCC optimize("Ofast") #pragma GCC optimize("unroll-loops") #include<stdio.h> constexpr int mod=1000000007; int K,N,M,a[100000]; long long c[200],x[100000]; int main(){ scanf("%d %d %d",&K,&N,&M); for(int i=0;i<K;++i)scanf("%d",&a[i]); for(int i=0;i<K;++i)scanf("%lld",&c[i]); for(int i=K;i<N;++i){ long long t=0; for(int j=0;j<K;++j)t+=c[j]*a[i-j-1]%mod; a[i]=t%mod; } for(int i=0;i<M;++i){ int l,r; scanf("%d %d",&l,&r); r-=l; for(int i=0;i<r;++i)x[i+l]+=a[i]; } for(int i=0;i<N;++i)printf("%d\n",int(x[i]%mod)); }