結果

問題 No.216 FAC
ユーザー jimanojimano
提出日時 2018-01-22 19:36:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 50 ms / 1,000 ms
コード長 875 bytes
コンパイル時間 3,027 ms
コンパイル使用メモリ 76,116 KB
実行使用メモリ 37,100 KB
最終ジャッジ日時 2024-06-07 17:38:17
合計ジャッジ時間 5,035 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
37,100 KB
testcase_01 AC 48 ms
36,644 KB
testcase_02 AC 49 ms
36,672 KB
testcase_03 AC 49 ms
36,968 KB
testcase_04 AC 48 ms
36,744 KB
testcase_05 AC 47 ms
36,908 KB
testcase_06 AC 48 ms
36,820 KB
testcase_07 AC 48 ms
36,924 KB
testcase_08 AC 48 ms
36,672 KB
testcase_09 AC 49 ms
36,936 KB
testcase_10 AC 48 ms
36,332 KB
testcase_11 AC 48 ms
36,832 KB
testcase_12 AC 48 ms
36,748 KB
testcase_13 AC 48 ms
37,052 KB
testcase_14 AC 48 ms
36,760 KB
testcase_15 AC 49 ms
36,360 KB
testcase_16 AC 49 ms
36,988 KB
testcase_17 AC 49 ms
36,856 KB
testcase_18 AC 47 ms
36,460 KB
testcase_19 AC 49 ms
36,788 KB
testcase_20 AC 50 ms
36,828 KB
testcase_21 AC 48 ms
36,488 KB
testcase_22 AC 48 ms
36,752 KB
testcase_23 AC 48 ms
36,768 KB
testcase_24 AC 49 ms
36,496 KB
testcase_25 AC 48 ms
36,448 KB
testcase_26 AC 47 ms
36,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder.lv1;

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

public class No0216 {
	public static void main(String[] args) {
		try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {
			int cnt = Integer.parseInt(br.readLine());
			String[] a = br.readLine().split(" ");
			String[] b = br.readLine().split(" ");
			int[] score = new int[100];
			int scoreK = 0;
			int max = 0;

			for (int i = 0; i < cnt; i++) {
				int tmp = Integer.parseInt(a[i]);
				int cntSolved = Integer.parseInt(b[i]);
				if (cntSolved == 0) {
					scoreK += tmp;
				} else {
					score[cntSolved - 1] += tmp;
				}
			}
			for (int i = 0; i < 100; i++) {
				max = Math.max(max, score[i]);
			}
			System.out.println(max <= scoreK ? "YES" : "NO");

		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}
0