結果

問題 No.1307 Rotate and Accumulate
ユーザー NyaanNyaanNyaanNyaan
提出日時 2020-12-04 00:37:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3,499 ms / 5,000 ms
コード長 535 bytes
コンパイル時間 1,833 ms
コンパイル使用メモリ 136,412 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-14 10:14:10
合計ジャッジ時間 27,465 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 593 ms
5,376 KB
testcase_09 AC 834 ms
5,376 KB
testcase_10 AC 1,203 ms
5,376 KB
testcase_11 AC 307 ms
5,376 KB
testcase_12 AC 1,145 ms
5,376 KB
testcase_13 AC 87 ms
5,376 KB
testcase_14 AC 306 ms
5,376 KB
testcase_15 AC 3,442 ms
5,376 KB
testcase_16 AC 3,499 ms
5,376 KB
testcase_17 AC 3,420 ms
5,376 KB
testcase_18 AC 2,928 ms
5,376 KB
testcase_19 AC 3,229 ms
5,376 KB
testcase_20 AC 3,180 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
 *  date : 2020-12-04 00:36:54
 */

#define NDEBUG
#include <immintrin.h>
#pragma GCC optimize("O3")
#pragma GCC target("avx2")

#include <cstdio>

int a[100000], b[200000];
int main() {
  int N, Q;
  scanf("%d%d", &N, &Q);
  for (int i = 0; i < N; i++) scanf("%d", a + i);
  while (Q--) {
    int i;
    scanf("%d", &i);
    if (i != 0) i = N - i;
    for (int j = 0; j < N; j++) b[i + j] += a[j];
  }
  for (int i = N, j = 0; j < N; i++, j++) {
    if (j) printf(" ");
    printf("%d", b[j] += b[i]);
  }
  printf("\n");
}
0