結果

問題 No.944 煎っぞ!
ユーザー ks2mks2m
提出日時 2019-12-09 23:01:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 223 ms / 3,000 ms
コード長 807 bytes
コンパイル時間 2,237 ms
コンパイル使用メモリ 76,256 KB
実行使用メモリ 49,920 KB
最終ジャッジ日時 2024-06-23 07:49:19
合計ジャッジ時間 9,019 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 178 ms
48,924 KB
testcase_01 AC 168 ms
49,548 KB
testcase_02 AC 171 ms
49,604 KB
testcase_03 AC 170 ms
49,512 KB
testcase_04 AC 183 ms
48,728 KB
testcase_05 AC 169 ms
49,624 KB
testcase_06 AC 164 ms
49,508 KB
testcase_07 AC 171 ms
48,332 KB
testcase_08 AC 169 ms
49,428 KB
testcase_09 AC 178 ms
49,660 KB
testcase_10 AC 53 ms
37,072 KB
testcase_11 AC 104 ms
40,064 KB
testcase_12 AC 91 ms
38,956 KB
testcase_13 AC 50 ms
36,268 KB
testcase_14 AC 110 ms
40,316 KB
testcase_15 AC 89 ms
38,728 KB
testcase_16 AC 50 ms
36,508 KB
testcase_17 AC 50 ms
37,012 KB
testcase_18 AC 100 ms
40,200 KB
testcase_19 AC 102 ms
39,824 KB
testcase_20 AC 215 ms
49,704 KB
testcase_21 AC 223 ms
49,712 KB
testcase_22 AC 169 ms
49,244 KB
testcase_23 AC 164 ms
49,344 KB
testcase_24 AC 165 ms
49,472 KB
testcase_25 AC 160 ms
49,376 KB
testcase_26 AC 156 ms
49,600 KB
testcase_27 AC 170 ms
48,980 KB
testcase_28 AC 49 ms
36,672 KB
testcase_29 AC 50 ms
36,716 KB
testcase_30 AC 221 ms
49,920 KB
testcase_31 AC 169 ms
48,532 KB
testcase_32 AC 169 ms
49,152 KB
testcase_33 AC 174 ms
48,824 KB
testcase_34 AC 176 ms
49,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int n = Integer.parseInt(br.readLine());
		String[] sa = br.readLine().split(" ");
		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = Integer.parseInt(sa[i]);
		}
		br.close();

		for (int i = 1; i < n; i++) {
			a[i] += a[i - 1];
		}

		label:
		for (int x = 1; x <= a[n - 1]; x++) {
			if (a[n - 1] % x == 0) {
				int m = x;
				int i = 0;
				while (m < a[n - 1]) {
					if (a[i] < m) {
						i++;
					} else if (a[i] == m) {
						i++;
						m += x;
					} else {
						continue label;
					}
				}
				System.out.println(a[n - 1] / x);
				return;
			}
		}
	}
}
0