結果

問題 No.1211 円環はお断り
ユーザー ks2mks2m
提出日時 2020-08-30 14:34:03
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,274 bytes
コンパイル時間 3,299 ms
コンパイル使用メモリ 78,064 KB
実行使用メモリ 59,984 KB
最終ジャッジ日時 2024-11-15 07:43:53
合計ジャッジ時間 18,707 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
36,716 KB
testcase_01 AC 49 ms
36,836 KB
testcase_02 AC 50 ms
36,864 KB
testcase_03 AC 50 ms
36,876 KB
testcase_04 AC 50 ms
37,028 KB
testcase_05 AC 50 ms
36,988 KB
testcase_06 AC 50 ms
36,956 KB
testcase_07 AC 52 ms
36,716 KB
testcase_08 AC 50 ms
36,944 KB
testcase_09 AC 52 ms
37,044 KB
testcase_10 WA -
testcase_11 AC 52 ms
37,004 KB
testcase_12 AC 50 ms
36,812 KB
testcase_13 AC 380 ms
55,132 KB
testcase_14 WA -
testcase_15 AC 392 ms
50,480 KB
testcase_16 AC 690 ms
56,028 KB
testcase_17 AC 159 ms
43,944 KB
testcase_18 AC 399 ms
49,952 KB
testcase_19 AC 178 ms
44,412 KB
testcase_20 WA -
testcase_21 AC 193 ms
44,364 KB
testcase_22 AC 408 ms
54,940 KB
testcase_23 AC 466 ms
54,196 KB
testcase_24 AC 330 ms
53,804 KB
testcase_25 AC 101 ms
40,956 KB
testcase_26 AC 421 ms
54,200 KB
testcase_27 AC 331 ms
54,248 KB
testcase_28 AC 441 ms
53,968 KB
testcase_29 AC 440 ms
56,804 KB
testcase_30 AC 527 ms
56,524 KB
testcase_31 AC 295 ms
50,384 KB
testcase_32 AC 655 ms
56,504 KB
testcase_33 AC 834 ms
59,336 KB
testcase_34 AC 839 ms
59,240 KB
testcase_35 AC 836 ms
59,288 KB
testcase_36 AC 832 ms
59,116 KB
testcase_37 AC 809 ms
59,488 KB
testcase_38 AC 813 ms
59,984 KB
testcase_39 AC 794 ms
59,872 KB
testcase_40 AC 276 ms
50,780 KB
testcase_41 AC 51 ms
36,972 KB
testcase_42 AC 51 ms
36,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.HashSet;
import java.util.Set;

public class Main {
	static int n, k;
	static int[] a;

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

		long ok = 0;
		long ng = sum / k + 1;
		while (Math.abs(ok - ng) > 1) {
			long mid = (ok + ng) / 2;
			if (can(mid)) {
				ok = mid;
			} else {
				ng = mid;
			}
		}
		System.out.println(ok);
	}

	static boolean can(long mid) {
		Set<Integer> set = new HashSet<>();
		boolean flg = false;
		label:
		for (int i = 0; i < n; i++) {
			long sum = 0;
			int cnt = 0;
			for (int j = i; j < i + n; j++) {
				int idx = j % n;
				sum += a[idx];
				if (sum >= mid) {
					cnt++;
					sum = 0;
					if (!flg && !set.add(idx)) {
						flg = true;
						i = idx;
						continue label;
					}
				}
			}
			if (cnt >= k) {
				return true;
			}
			if (flg) {
				break;
			}
		}
		return false;
	}
}
0