結果

問題 No.1715 Dinner 2
ユーザー ks2mks2m
提出日時 2021-10-22 21:55:27
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,052 bytes
コンパイル時間 2,286 ms
コンパイル使用メモリ 77,988 KB
実行使用メモリ 51,660 KB
最終ジャッジ日時 2024-09-23 05:22:01
合計ジャッジ時間 5,903 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
49,708 KB
testcase_01 AC 53 ms
50,132 KB
testcase_02 AC 54 ms
50,256 KB
testcase_03 AC 53 ms
50,332 KB
testcase_04 AC 56 ms
50,220 KB
testcase_05 WA -
testcase_06 AC 54 ms
50,168 KB
testcase_07 AC 53 ms
49,856 KB
testcase_08 AC 53 ms
50,024 KB
testcase_09 AC 53 ms
49,964 KB
testcase_10 WA -
testcase_11 AC 92 ms
51,564 KB
testcase_12 AC 95 ms
51,632 KB
testcase_13 AC 95 ms
51,584 KB
testcase_14 AC 91 ms
51,640 KB
testcase_15 AC 94 ms
51,516 KB
testcase_16 AC 91 ms
51,620 KB
testcase_17 AC 86 ms
51,436 KB
testcase_18 AC 53 ms
50,244 KB
testcase_19 AC 53 ms
50,288 KB
testcase_20 AC 53 ms
50,140 KB
testcase_21 AC 52 ms
49,968 KB
testcase_22 AC 53 ms
50,224 KB
testcase_23 AC 53 ms
50,280 KB
testcase_24 AC 54 ms
50,280 KB
testcase_25 AC 55 ms
50,068 KB
testcase_26 AC 55 ms
50,116 KB
testcase_27 AC 55 ms
50,100 KB
testcase_28 AC 55 ms
49,808 KB
testcase_29 AC 55 ms
50,168 KB
testcase_30 AC 55 ms
50,152 KB
testcase_31 AC 56 ms
49,896 KB
testcase_32 AC 97 ms
51,544 KB
testcase_33 AC 97 ms
51,548 KB
testcase_34 AC 95 ms
51,504 KB
testcase_35 AC 97 ms
51,660 KB
testcase_36 AC 54 ms
50,216 KB
testcase_37 WA -
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

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));
		String[] sa = br.readLine().split(" ");
		int n = Integer.parseInt(sa[0]);
		int d = Integer.parseInt(sa[1]);
		int[] p = new int[n];
		int[] q = new int[n];
		for (int i = 0; i < n; i++) {
			sa = br.readLine().split(" ");
			p[i] = -Integer.parseInt(sa[0]);
			q[i] = Integer.parseInt(sa[1]);
		}
		br.close();

		int d1 = (d - 1) / 2;
		int d2 = d % 2;
		int ans = Integer.MIN_VALUE;
		for (int i = 0; i < n; i++) {
			for (int j = 0; j < n; j++) {
				if (i == j) {
					continue;
				}
				int m1 = p[i];
				int m2 = m1 + q[i] + p[j];
				int sum = m2 + q[j];
				if (sum >= 0) {
					ans = Math.max(ans, Math.min(m1, m2));
				} else {
					if (d2 == 0) {
						ans = Math.max(ans, sum * d1 + Math.min(m1, m2));
					} else {
						ans = Math.max(ans, sum * d1 + m1);
					}
				}
			}
		}
		System.out.println(ans);
	}
}
0