結果

問題 No.216 FAC
ユーザー GrenacheGrenache
提出日時 2015-05-26 22:39:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 156 ms / 1,000 ms
コード長 607 bytes
コンパイル時間 2,091 ms
コンパイル使用メモリ 74,992 KB
実行使用メモリ 41,664 KB
最終ジャッジ日時 2024-10-15 00:32:49
合計ジャッジ時間 6,826 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,464 KB
testcase_01 AC 133 ms
41,088 KB
testcase_02 AC 118 ms
39,940 KB
testcase_03 AC 148 ms
41,536 KB
testcase_04 AC 142 ms
41,256 KB
testcase_05 AC 140 ms
41,248 KB
testcase_06 AC 131 ms
41,380 KB
testcase_07 AC 132 ms
41,368 KB
testcase_08 AC 133 ms
41,100 KB
testcase_09 AC 134 ms
41,380 KB
testcase_10 AC 132 ms
41,204 KB
testcase_11 AC 133 ms
41,296 KB
testcase_12 AC 135 ms
41,296 KB
testcase_13 AC 134 ms
41,400 KB
testcase_14 AC 132 ms
41,216 KB
testcase_15 AC 133 ms
41,096 KB
testcase_16 AC 146 ms
41,404 KB
testcase_17 AC 148 ms
41,220 KB
testcase_18 AC 152 ms
41,592 KB
testcase_19 AC 156 ms
41,352 KB
testcase_20 AC 147 ms
41,180 KB
testcase_21 AC 149 ms
41,412 KB
testcase_22 AC 148 ms
41,540 KB
testcase_23 AC 147 ms
41,224 KB
testcase_24 AC 151 ms
41,492 KB
testcase_25 AC 150 ms
41,664 KB
testcase_26 AC 133 ms
40,976 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];

		for (int i = 0; i < n; i++) {
			a[i] = sc.nextInt();
		}
		
		int[] score = new int[200];
		int sco = 0;
		for (int i = 0; i < n; i++) {
			int b = sc.nextInt();
			if (b != 0) {
				score[b - 1] += a[i];
			} else {
				sco += a[i];
			}
		}

		for (int i = 0; i < 200; i++) {
			if (score[i] > sco) {
				System.out.println("NO");
				sc.close();
				return;
			}
		}
		
		System.out.println("YES");
		
		sc.close();
	}
}
0