結果

問題 No.216 FAC
ユーザー ohagi_1182ohagi_1182
提出日時 2017-10-14 17:01:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 1,000 ms
コード長 664 bytes
コンパイル時間 1,702 ms
コンパイル使用メモリ 74,860 KB
実行使用メモリ 54,268 KB
最終ジャッジ日時 2024-11-17 14:41:45
合計ジャッジ時間 5,376 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
53,992 KB
testcase_01 AC 94 ms
53,168 KB
testcase_02 AC 103 ms
53,932 KB
testcase_03 AC 111 ms
53,988 KB
testcase_04 AC 110 ms
54,080 KB
testcase_05 AC 103 ms
53,420 KB
testcase_06 AC 105 ms
53,960 KB
testcase_07 AC 94 ms
53,232 KB
testcase_08 AC 93 ms
53,028 KB
testcase_09 AC 102 ms
53,764 KB
testcase_10 AC 104 ms
53,704 KB
testcase_11 AC 104 ms
53,984 KB
testcase_12 AC 107 ms
54,144 KB
testcase_13 AC 99 ms
52,756 KB
testcase_14 AC 108 ms
53,820 KB
testcase_15 AC 110 ms
54,092 KB
testcase_16 AC 125 ms
54,012 KB
testcase_17 AC 114 ms
53,952 KB
testcase_18 AC 113 ms
54,000 KB
testcase_19 AC 118 ms
53,960 KB
testcase_20 AC 113 ms
53,868 KB
testcase_21 AC 112 ms
54,068 KB
testcase_22 AC 112 ms
54,268 KB
testcase_23 AC 117 ms
53,812 KB
testcase_24 AC 124 ms
53,860 KB
testcase_25 AC 118 ms
53,976 KB
testcase_26 AC 94 ms
52,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] a = new int[n];
		int[] b = new int[n];
		for(int i = 0 ; i < n ; i++) a[i] = sc.nextInt();
		for(int i = 0 ; i < n ; i++) b[i] = sc.nextInt();
		int[] point = new int[100];
		int max = -1001001001; int ret = 0;
		for(int i = 0 ; i < n ; i++) {
			if(b[i] != 0) {
				point[b[i] - 1] += a[i];
			} else {
				ret += a[i];
			}
		}
		for(int i = 0 ; i < 100 ; i++) {
			max = Math.max(max, point[i]);
		}
		if(ret >= max) {
			System.out.println("YES");
		} else {
			System.out.println("NO");
		}
 	}
}
0