結果

問題 No.944 煎っぞ!
ユーザー htensaihtensai
提出日時 2019-12-09 11:21:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 595 ms / 3,000 ms
コード長 1,608 bytes
コンパイル時間 2,929 ms
コンパイル使用メモリ 78,392 KB
実行使用メモリ 59,396 KB
最終ジャッジ日時 2024-06-12 22:09:51
合計ジャッジ時間 19,889 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 588 ms
59,324 KB
testcase_01 AC 520 ms
59,220 KB
testcase_02 AC 578 ms
59,396 KB
testcase_03 AC 524 ms
59,144 KB
testcase_04 AC 534 ms
59,160 KB
testcase_05 AC 562 ms
59,296 KB
testcase_06 AC 534 ms
59,092 KB
testcase_07 AC 557 ms
59,176 KB
testcase_08 AC 526 ms
59,236 KB
testcase_09 AC 572 ms
59,196 KB
testcase_10 AC 184 ms
54,604 KB
testcase_11 AC 309 ms
58,700 KB
testcase_12 AC 246 ms
58,036 KB
testcase_13 AC 133 ms
53,984 KB
testcase_14 AC 319 ms
58,848 KB
testcase_15 AC 244 ms
57,864 KB
testcase_16 AC 135 ms
54,100 KB
testcase_17 AC 139 ms
53,976 KB
testcase_18 AC 297 ms
58,732 KB
testcase_19 AC 288 ms
58,440 KB
testcase_20 AC 558 ms
59,276 KB
testcase_21 AC 541 ms
59,188 KB
testcase_22 AC 560 ms
59,340 KB
testcase_23 AC 526 ms
59,012 KB
testcase_24 AC 525 ms
59,220 KB
testcase_25 AC 532 ms
59,120 KB
testcase_26 AC 557 ms
59,292 KB
testcase_27 AC 595 ms
59,312 KB
testcase_28 AC 130 ms
54,180 KB
testcase_29 AC 130 ms
54,036 KB
testcase_30 AC 437 ms
57,880 KB
testcase_31 AC 561 ms
59,056 KB
testcase_32 AC 522 ms
58,920 KB
testcase_33 AC 562 ms
59,276 KB
testcase_34 AC 565 ms
59,360 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 = 1; 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