結果
問題 | No.1307 Rotate and Accumulate |
ユーザー | penguinman |
提出日時 | 2020-12-04 04:13:31 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 465 bytes |
コンパイル時間 | 297 ms |
コンパイル使用メモリ | 29,312 KB |
実行使用メモリ | 13,888 KB |
最終ジャッジ日時 | 2024-09-14 14:44:08 |
合計ジャッジ時間 | 14,467 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
9,244 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | TLE | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
ソースコード
#include<stdio.h> short A[100000]; int i,j,N,Q,B[100000],cnt[100000]; int main(){ scanf("%d%d",&N,&Q); for(i=0;i!=N;i++) scanf("%o",&A[i]); while(Q--){ int now; scanf("%d",&now); cnt[now]++; } for(;i;i--){ if(cnt[i-1]){ int now=i-1; for(j=0;j!=N;j++){ B[j]+=A[now]*cnt[i-1]; if(++now==N) now=0; } } } for(;i!=N;i++) printf("%d ",B[i]); }