結果
問題 | No.1307 Rotate and Accumulate |
ユーザー | tko919 |
提出日時 | 2020-12-04 00:52:13 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,317 bytes |
コンパイル時間 | 2,536 ms |
コンパイル使用メモリ | 182,692 KB |
実行使用メモリ | 14,016 KB |
最終ジャッジ日時 | 2024-09-14 10:43:29 |
合計ジャッジ時間 | 31,148 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,656 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,812 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | AC | 2,416 ms
6,940 KB |
testcase_11 | AC | 4,544 ms
6,944 KB |
testcase_12 | AC | 2,626 ms
6,940 KB |
testcase_13 | AC | 41 ms
6,944 KB |
testcase_14 | AC | 598 ms
6,944 KB |
testcase_15 | TLE | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
ソースコード
#pragma GCC target("avx2") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #define _USE_MATH_DEFINES #include <bits/stdc++.h> using namespace std; //template #define rep(i,a,b) for(int i=(int)(a);i<(int)(b);i++) #define ALL(v) (v).begin(),(v).end() typedef long long int ll; const int inf = 0x3fffffff; const ll INF = 0x1fffffffffffffff; const double eps=1e-12; template<typename T>inline bool chmax(T& a,T b){if(a<b){a=b;return 1;}return 0;} template<typename T>inline bool chmin(T& a,T b){if(a>b){a=b;return 1;}return 0;} //end template<typename T=int>inline T get(){ char c='$'; while(c!='-' and !isdigit(c))c=getchar(); bool neg=(c=='-'); T res=neg?0:c-'0'; while(isdigit(c=getchar()))res=res*10+(c-'0'); return neg?-res:res; } template<typename T=int>inline void put(T x,char c='\n'){ if(x==0)putchar('0'); else{ if(x<0){putchar('-'),x*=-1;} int d[20],i=0; while(x){d[i++]=x%10,x/=10;} while(i--)putchar('0'+d[i]); } putchar(c); } int a[100010],cnt[100010]={},x,j,k; ll res; int main(){ int n=get(),q=get(); rep(i,0,n)a[i]=get(); rep(_,0,q){ x=get(); cnt[x]++; } rep(i,0,n){ res=0; for(j=0,k=i;j<n;j++,k++){ if(k==n)k=0; res+=a[k]*cnt[j]; } put<ll>(res,' '); } putchar('\n'); return 0; }