結果

問題 No.944 煎っぞ!
ユーザー SSRSSSRS
提出日時 2020-11-12 00:01:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 930 ms / 3,000 ms
コード長 724 bytes
コンパイル時間 1,898 ms
コンパイル使用メモリ 177,876 KB
実行使用メモリ 8,832 KB
最終ジャッジ日時 2024-07-22 18:55:14
合計ジャッジ時間 9,881 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 191 ms
8,832 KB
testcase_01 AC 125 ms
8,704 KB
testcase_02 AC 145 ms
8,832 KB
testcase_03 AC 140 ms
8,704 KB
testcase_04 AC 199 ms
8,832 KB
testcase_05 AC 89 ms
8,832 KB
testcase_06 AC 109 ms
8,832 KB
testcase_07 AC 144 ms
8,704 KB
testcase_08 AC 213 ms
8,704 KB
testcase_09 AC 95 ms
8,832 KB
testcase_10 AC 5 ms
5,376 KB
testcase_11 AC 97 ms
5,376 KB
testcase_12 AC 55 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 97 ms
5,376 KB
testcase_15 AC 47 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 98 ms
5,376 KB
testcase_19 AC 97 ms
5,376 KB
testcase_20 AC 357 ms
8,704 KB
testcase_21 AC 396 ms
8,704 KB
testcase_22 AC 118 ms
8,704 KB
testcase_23 AC 161 ms
8,704 KB
testcase_24 AC 236 ms
8,704 KB
testcase_25 AC 137 ms
8,832 KB
testcase_26 AC 124 ms
8,832 KB
testcase_27 AC 930 ms
8,320 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 671 ms
8,704 KB
testcase_31 AC 54 ms
8,704 KB
testcase_32 AC 61 ms
8,704 KB
testcase_33 AC 363 ms
8,576 KB
testcase_34 AC 417 ms
8,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  int N;
  cin >> N;
  vector<int> a(N);
  for (int i = 0; i < N; i++){
    cin >> a[i];
  }
  vector<int> s(N + 1, 0);
  for (int i = 0; i < N; i++){
    s[i + 1] = s[i] + a[i];
  }
  set<int> st;
  for (int i = 0; i <= N; i++){
    st.insert(s[i]);
  }
  vector<int> f;
  for (int i = 1; i * i <= s[N]; i++){
    if (s[N] % i == 0){
      f.push_back(i);
      if (i * i < s[N]){
        f.push_back(s[N] / i);
      }
    }
  }
  sort(f.begin(), f.end());
  for (int x : f){
    bool ok = true;
    for (int i = 0; i <= s[N]; i += x){
      if (!st.count(i)){
        ok = false;
      }
    }
    if (ok){
      cout << s[N] / x << endl;
      break;
    }
  }
}
0