結果

問題 No.944 煎っぞ!
ユーザー tentententen
提出日時 2022-10-06 09:36:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 224 ms / 3,000 ms
コード長 1,726 bytes
コンパイル時間 1,955 ms
コンパイル使用メモリ 78,552 KB
実行使用メモリ 62,944 KB
最終ジャッジ日時 2024-06-10 20:52:51
合計ジャッジ時間 9,280 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 205 ms
60,520 KB
testcase_01 AC 203 ms
60,408 KB
testcase_02 AC 207 ms
60,612 KB
testcase_03 AC 210 ms
60,028 KB
testcase_04 AC 206 ms
60,532 KB
testcase_05 AC 181 ms
60,468 KB
testcase_06 AC 205 ms
60,544 KB
testcase_07 AC 216 ms
60,768 KB
testcase_08 AC 185 ms
60,204 KB
testcase_09 AC 209 ms
60,860 KB
testcase_10 AC 56 ms
50,404 KB
testcase_11 AC 116 ms
53,824 KB
testcase_12 AC 107 ms
51,884 KB
testcase_13 AC 52 ms
50,320 KB
testcase_14 AC 118 ms
53,872 KB
testcase_15 AC 106 ms
51,896 KB
testcase_16 AC 52 ms
50,096 KB
testcase_17 AC 50 ms
50,216 KB
testcase_18 AC 108 ms
53,836 KB
testcase_19 AC 118 ms
54,068 KB
testcase_20 AC 220 ms
60,484 KB
testcase_21 AC 211 ms
60,372 KB
testcase_22 AC 204 ms
60,932 KB
testcase_23 AC 206 ms
60,580 KB
testcase_24 AC 208 ms
61,020 KB
testcase_25 AC 217 ms
60,136 KB
testcase_26 AC 191 ms
60,340 KB
testcase_27 AC 190 ms
58,136 KB
testcase_28 AC 50 ms
50,336 KB
testcase_29 AC 49 ms
50,324 KB
testcase_30 AC 217 ms
60,500 KB
testcase_31 AC 224 ms
62,944 KB
testcase_32 AC 204 ms
60,772 KB
testcase_33 AC 214 ms
60,752 KB
testcase_34 AC 214 ms
60,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int sum = 0;
        HashSet<Integer> all = new HashSet<>();
        for (int i = 0; i < n; i++) {
            sum += sc.nextInt();
            all.add(sum);
        }
        int ans = 1;
        for (int i = 1; i <= Math.sqrt(sum); i++) {
            if (sum % i == 0) {
                if (check(i, all, sum)) {
                    ans = Math.max(ans, sum / i);
                }
                if (check(sum / i, all ,sum)) {
                    ans = Math.max(ans, i);
                }
            }
        }
        System.out.println(ans);
    }
    
    static boolean check(int x, HashSet<Integer> all, int sum) {
        for (int i = 1; i * x <= sum; i++) {
            if (!all.contains(i * x)) {
                return false;
            }
        }
        return true;
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0