結果

問題 No.216 FAC
ユーザー YOSHIYOSHI
提出日時 2021-03-06 14:00:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 75 ms / 1,000 ms
コード長 789 bytes
コンパイル時間 3,732 ms
コンパイル使用メモリ 88,240 KB
実行使用メモリ 38,168 KB
最終ジャッジ日時 2024-10-08 12:38:33
合計ジャッジ時間 7,053 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
37,964 KB
testcase_01 AC 62 ms
37,788 KB
testcase_02 AC 65 ms
37,972 KB
testcase_03 AC 65 ms
37,828 KB
testcase_04 AC 64 ms
37,716 KB
testcase_05 AC 64 ms
37,852 KB
testcase_06 AC 64 ms
37,452 KB
testcase_07 AC 63 ms
37,604 KB
testcase_08 AC 63 ms
37,620 KB
testcase_09 AC 64 ms
37,756 KB
testcase_10 AC 63 ms
38,016 KB
testcase_11 AC 64 ms
37,908 KB
testcase_12 AC 64 ms
37,760 KB
testcase_13 AC 63 ms
37,744 KB
testcase_14 AC 64 ms
37,912 KB
testcase_15 AC 63 ms
38,044 KB
testcase_16 AC 67 ms
37,668 KB
testcase_17 AC 67 ms
37,952 KB
testcase_18 AC 72 ms
37,856 KB
testcase_19 AC 68 ms
38,100 KB
testcase_20 AC 66 ms
37,896 KB
testcase_21 AC 75 ms
38,084 KB
testcase_22 AC 67 ms
37,916 KB
testcase_23 AC 66 ms
38,168 KB
testcase_24 AC 65 ms
38,088 KB
testcase_25 AC 68 ms
37,836 KB
testcase_26 AC 62 ms
37,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;
import java.util.stream.Stream;

public class No00000216_Main {

	public static void main(String[] args) throws IOException {

		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

		int n = Integer.parseInt(br.readLine());
		int[] a = Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
		int[] b = Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
		int[] other = new int[100];

		int point = 0;
		for(int i = 0; i < n; i++) {
			if(b[i] == 0) {
				point += a[i];
			} else {
				other[b[i] - 1] += a[i];
			}
		}
		Arrays.sort(other);
		System.out.println(point >= other[99] ? "YES" : "NO");
	}
}
0