結果

問題 No.944 煎っぞ!
ユーザー tentententen
提出日時 2022-08-04 09:51:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 289 ms / 3,000 ms
コード長 1,697 bytes
コンパイル時間 2,267 ms
コンパイル使用メモリ 78,428 KB
実行使用メモリ 51,496 KB
最終ジャッジ日時 2024-09-14 05:59:24
合計ジャッジ時間 10,384 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 235 ms
50,088 KB
testcase_01 AC 244 ms
50,064 KB
testcase_02 AC 236 ms
50,032 KB
testcase_03 AC 210 ms
50,064 KB
testcase_04 AC 233 ms
49,872 KB
testcase_05 AC 234 ms
49,780 KB
testcase_06 AC 229 ms
49,808 KB
testcase_07 AC 235 ms
49,816 KB
testcase_08 AC 206 ms
49,340 KB
testcase_09 AC 234 ms
49,864 KB
testcase_10 AC 62 ms
37,348 KB
testcase_11 AC 117 ms
40,788 KB
testcase_12 AC 108 ms
39,760 KB
testcase_13 AC 55 ms
36,948 KB
testcase_14 AC 129 ms
42,244 KB
testcase_15 AC 112 ms
39,536 KB
testcase_16 AC 54 ms
36,936 KB
testcase_17 AC 56 ms
36,928 KB
testcase_18 AC 119 ms
40,868 KB
testcase_19 AC 115 ms
40,688 KB
testcase_20 AC 243 ms
49,672 KB
testcase_21 AC 244 ms
49,892 KB
testcase_22 AC 225 ms
49,892 KB
testcase_23 AC 226 ms
49,436 KB
testcase_24 AC 230 ms
49,528 KB
testcase_25 AC 224 ms
50,040 KB
testcase_26 AC 220 ms
49,396 KB
testcase_27 AC 220 ms
47,760 KB
testcase_28 AC 54 ms
36,956 KB
testcase_29 AC 55 ms
36,576 KB
testcase_30 AC 289 ms
49,736 KB
testcase_31 AC 277 ms
51,496 KB
testcase_32 AC 215 ms
50,168 KB
testcase_33 AC 239 ms
50,260 KB
testcase_34 AC 242 ms
50,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static HashSet<Integer> sums = new HashSet<>();
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int total = 0;
        while (n-- > 0) {
            total += sc.nextInt();
            sums.add(total);
        }
        int ans = 1;
        for (int i = 1; i <= Math.sqrt(total); i++) {
            if (total % i == 0) {
                if (check(i, total)) {
                    ans = Math.max(i, ans);
                }
                if (check(total / i, total)) {
                    ans = Math.max(total / i, ans);
                }
            }
        }
        System.out.println(ans);
    }
    
    static boolean check(int count, int total) {
        int num = total / count;
        for (int i = 1; i <= count; i++) {
            if (!sums.contains(i * num)) {
                return false;
            }
        }
        return true;
    }
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    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