結果

問題 No.949 飲酒プログラミングコンテスト
ユーザー tentententen
提出日時 2020-12-16 19:20:38
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,339 bytes
コンパイル時間 2,922 ms
コンパイル使用メモリ 77,444 KB
実行使用メモリ 58,616 KB
最終ジャッジ日時 2024-09-20 05:16:21
合計ジャッジ時間 9,848 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,096 KB
testcase_01 AC 121 ms
41,196 KB
testcase_02 AC 124 ms
41,164 KB
testcase_03 AC 122 ms
41,556 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 154 ms
41,684 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 162 ms
42,000 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 189 ms
43,936 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 185 ms
44,384 KB
testcase_18 AC 259 ms
47,168 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 172 ms
42,368 KB
testcase_24 AC 226 ms
46,852 KB
testcase_25 WA -
testcase_26 AC 234 ms
46,744 KB
testcase_27 WA -
testcase_28 AC 244 ms
46,428 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 236 ms
46,628 KB
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] kenArr = new int[n + 1];
		for (int i = 0; i <= n; i++) {
		    kenArr[i] = sc.nextInt();
		}
		int[] kooArr = new int[n + 1];
		for (int i = 0; i <= n; i++) {
		    kooArr[i] = sc.nextInt();
		}
		int[] strategy = new int[n];
		int kenIdx = 0;
		int kooIdx = 0;
		for (int i = 0; i < n; i++) {
		    if (kenArr[kenIdx + 1] + kooArr[kooIdx] >= kenArr[kenIdx] + kooArr[kooIdx + 1]) {
		        strategy[i] = kenArr[kenIdx + 1] + kooArr[kooIdx];
		        kenIdx++;
		    } else {
		        strategy[i] = kenArr[kenIdx] + kooArr[kooIdx + 1];
		        kooIdx++;
		    }
		}
		int[] questions = new int[n];
		for (int i = 0; i < n; i++) {
		    questions[i] = sc.nextInt();
		}
		Arrays.sort(questions);
		if (questions[0] > strategy[0]) {
		    System.out.println(0);
		    return;
		}
		int left = 0;
		int right = n + 1;
		while (right - left > 1) {
		    int m = (left + right) / 2;
		    boolean can = true;
		    for (int i = 0; i < m; i++) {
		        if (questions[m - i - 1] > strategy[i]) {
		            can = false;
		            break;
		        }
		    }
		    if (can) {
		        left = m;
		    } else {
		        right = m;
		    }
		}
		System.out.println(left);
	}
}
0