結果

問題 No.944 煎っぞ!
ユーザー htensaihtensai
提出日時 2019-12-09 11:18:32
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,608 bytes
コンパイル時間 3,999 ms
コンパイル使用メモリ 78,004 KB
実行使用メモリ 48,484 KB
最終ジャッジ日時 2024-06-12 05:30:58
合計ジャッジ時間 21,395 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 570 ms
48,212 KB
testcase_01 AC 574 ms
48,336 KB
testcase_02 AC 573 ms
48,448 KB
testcase_03 AC 577 ms
48,204 KB
testcase_04 AC 573 ms
48,272 KB
testcase_05 AC 562 ms
48,284 KB
testcase_06 AC 610 ms
48,048 KB
testcase_07 AC 610 ms
48,392 KB
testcase_08 AC 573 ms
48,156 KB
testcase_09 AC 534 ms
48,260 KB
testcase_10 AC 188 ms
42,560 KB
testcase_11 AC 311 ms
47,480 KB
testcase_12 AC 264 ms
46,064 KB
testcase_13 AC 146 ms
41,300 KB
testcase_14 AC 310 ms
47,472 KB
testcase_15 AC 254 ms
46,012 KB
testcase_16 AC 143 ms
41,420 KB
testcase_17 AC 147 ms
41,456 KB
testcase_18 AC 310 ms
47,460 KB
testcase_19 AC 307 ms
47,476 KB
testcase_20 AC 618 ms
48,484 KB
testcase_21 AC 647 ms
48,328 KB
testcase_22 AC 564 ms
48,380 KB
testcase_23 AC 615 ms
48,440 KB
testcase_24 AC 577 ms
48,152 KB
testcase_25 AC 572 ms
48,200 KB
testcase_26 AC 596 ms
48,280 KB
testcase_27 AC 633 ms
48,320 KB
testcase_28 AC 146 ms
41,720 KB
testcase_29 AC 140 ms
41,156 KB
testcase_30 AC 515 ms
47,892 KB
testcase_31 WA -
testcase_32 AC 569 ms
48,320 KB
testcase_33 AC 632 ms
48,364 KB
testcase_34 AC 614 ms
48,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int[] arr = new int[n];
        int total = 0;
        for (int i = 0; i < n; i++) {
            arr[i] = sc.nextInt();
            total += arr[i];
        }
        TreeSet<Integer> set = new TreeSet<>();
        for (int i = 2; i <= Math.sqrt(total); i++) {
            if (total % i == 0) {
                set.add(total / i);
                int idx = 0;
                boolean flag = true;
                int cur = 0;
                while (idx < n) {
                    cur += arr[idx];
                    if (cur > i) {
                        flag = false;
                        break;
                    } else if (cur == i) {
                        cur = 0;
                    }
                    idx++;
                }
                if (flag) {
                    System.out.println(total / i);
                    return;
                }
            }
        }
        for (int x : set) {
            int idx = 0;
            boolean flag = true;
            int cur = 0;
            while (idx < n) {
                cur += arr[idx];
                if (cur > x) {
                    flag = false;
                    break;
                } else if (cur == x) {
                    cur = 0;
                }
                idx++;
            }
            if (flag) {
                System.out.println(total / x);
                return;
            }
        }
        System.out.println(1);
    }
}
0