結果

問題 No.944 煎っぞ!
ユーザー hitonanodehitonanode
提出日時 2019-12-07 01:27:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 649 bytes
コンパイル時間 1,851 ms
コンパイル使用メモリ 172,816 KB
実行使用メモリ 7,964 KB
最終ジャッジ日時 2024-06-06 14:03:22
合計ジャッジ時間 5,043 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
7,840 KB
testcase_01 AC 36 ms
7,840 KB
testcase_02 AC 44 ms
7,856 KB
testcase_03 AC 41 ms
7,844 KB
testcase_04 AC 54 ms
7,840 KB
testcase_05 AC 27 ms
7,836 KB
testcase_06 AC 34 ms
7,708 KB
testcase_07 AC 43 ms
7,844 KB
testcase_08 AC 62 ms
7,836 KB
testcase_09 AC 30 ms
7,764 KB
testcase_10 AC 5 ms
5,376 KB
testcase_11 AC 65 ms
5,376 KB
testcase_12 AC 29 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 66 ms
5,376 KB
testcase_15 AC 31 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 66 ms
5,376 KB
testcase_19 AC 65 ms
5,376 KB
testcase_20 AC 88 ms
7,836 KB
testcase_21 AC 113 ms
7,708 KB
testcase_22 AC 35 ms
7,844 KB
testcase_23 AC 47 ms
7,964 KB
testcase_24 AC 64 ms
7,836 KB
testcase_25 AC 41 ms
7,840 KB
testcase_26 AC 38 ms
7,840 KB
testcase_27 AC 368 ms
7,840 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 238 ms
7,716 KB
testcase_31 WA -
testcase_32 AC 22 ms
7,836 KB
testcase_33 AC 139 ms
7,840 KB
testcase_34 AC 163 ms
7,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
struct fast_ios { fast_ios(){ cin.tie(0); ios::sync_with_stdio(false); cout << fixed << setprecision(20); }; } fast_ios_;
#define FOR(i, begin, end) for(int i=(begin),i##_end_=(end);i<i##_end_;i++)
#define REP(i, n) FOR(i,0,n)


int main()
{
    int N;
    cin >> N;
    int t = 0;
    unordered_set<int> s;
    while (N--)
    {
        int a;
        cin >> a;
        t += a;
        s.insert(t);
    }
    int ret = 1;
    FOR(i, 2, t) if (t % i == 0)
    {
        bool f = true;
        FOR(j, 1, i + 1) if (!s.count(t / i * j)) f = false;
        if (f) ret = i;
    }
    cout << ret << endl;
}
0