結果

問題 No.944 煎っぞ!
ユーザー tentententen
提出日時 2020-08-26 09:54:55
言語 Java
(openjdk 23)
結果
AC  
実行時間 611 ms / 3,000 ms
コード長 1,531 bytes
コンパイル時間 2,585 ms
コンパイル使用メモリ 78,256 KB
実行使用メモリ 48,532 KB
最終ジャッジ日時 2024-11-07 00:37:35
合計ジャッジ時間 20,742 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 557 ms
48,232 KB
testcase_01 AC 510 ms
47,924 KB
testcase_02 AC 577 ms
48,360 KB
testcase_03 AC 552 ms
48,016 KB
testcase_04 AC 507 ms
48,208 KB
testcase_05 AC 554 ms
48,364 KB
testcase_06 AC 589 ms
48,208 KB
testcase_07 AC 592 ms
48,440 KB
testcase_08 AC 611 ms
48,272 KB
testcase_09 AC 556 ms
48,356 KB
testcase_10 AC 191 ms
42,216 KB
testcase_11 AC 306 ms
47,448 KB
testcase_12 AC 255 ms
46,072 KB
testcase_13 AC 142 ms
41,056 KB
testcase_14 AC 306 ms
47,624 KB
testcase_15 AC 247 ms
46,220 KB
testcase_16 AC 128 ms
40,120 KB
testcase_17 AC 142 ms
41,400 KB
testcase_18 AC 296 ms
47,552 KB
testcase_19 AC 314 ms
47,496 KB
testcase_20 AC 588 ms
48,532 KB
testcase_21 AC 584 ms
48,308 KB
testcase_22 AC 561 ms
48,156 KB
testcase_23 AC 550 ms
48,468 KB
testcase_24 AC 564 ms
48,288 KB
testcase_25 AC 555 ms
48,108 KB
testcase_26 AC 476 ms
46,892 KB
testcase_27 AC 573 ms
48,416 KB
testcase_28 AC 134 ms
41,052 KB
testcase_29 AC 138 ms
41,124 KB
testcase_30 AC 520 ms
47,892 KB
testcase_31 AC 561 ms
48,276 KB
testcase_32 AC 510 ms
48,172 KB
testcase_33 AC 574 ms
48,492 KB
testcase_34 AC 578 ms
47,964 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 sum = 0;
        for (int i = 0; i < n; i++) {
            arr[i] = sc.nextInt();
            sum += arr[i];
        }
        TreeSet<Integer> another = new TreeSet<>();
        for (int i = 1; i <= Math.sqrt(sum); i++) {
            if (sum % i != 0) {
                continue;
            }
            another.add(sum / i);
            int tmp = 0;
            boolean flag = true;
            int count = 0;
            for (int x : arr) {
                tmp += x;
                if (tmp > i) {
                    flag = false;
                    break;
                } else if (tmp == i) {
                    tmp = 0;
                    count++;
                }
            }
            if (flag) {
                System.out.println(count);
                return;
            }
        }
        for (int y : another) {
            int tmp = 0;
            boolean flag = true;
            int count = 0;
            for (int x : arr) {
                tmp += x;
                if (tmp > y) {
                    flag = false;
                    break;
                } else if (tmp == y) {
                    tmp = 0;
                    count++;
                }
            }
            if (flag) {
                System.out.println(count);
                return;
            }
        }
    }
}
0