結果

問題 No.216 FAC
ユーザー spaciaspacia
提出日時 2016-01-02 08:18:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 51 ms / 1,000 ms
コード長 750 bytes
コンパイル時間 2,269 ms
コンパイル使用メモリ 74,224 KB
実行使用メモリ 36,928 KB
最終ジャッジ日時 2024-10-15 00:44:51
合計ジャッジ時間 3,927 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
36,352 KB
testcase_01 AC 48 ms
36,688 KB
testcase_02 AC 46 ms
36,872 KB
testcase_03 AC 48 ms
36,804 KB
testcase_04 AC 48 ms
36,820 KB
testcase_05 AC 48 ms
36,784 KB
testcase_06 AC 48 ms
36,724 KB
testcase_07 AC 49 ms
36,324 KB
testcase_08 AC 47 ms
36,560 KB
testcase_09 AC 47 ms
36,680 KB
testcase_10 AC 46 ms
36,296 KB
testcase_11 AC 45 ms
36,284 KB
testcase_12 AC 47 ms
36,716 KB
testcase_13 AC 48 ms
36,472 KB
testcase_14 AC 46 ms
36,768 KB
testcase_15 AC 46 ms
36,312 KB
testcase_16 AC 48 ms
36,792 KB
testcase_17 AC 47 ms
36,480 KB
testcase_18 AC 47 ms
36,816 KB
testcase_19 AC 47 ms
36,928 KB
testcase_20 AC 47 ms
36,660 KB
testcase_21 AC 47 ms
36,708 KB
testcase_22 AC 49 ms
36,872 KB
testcase_23 AC 46 ms
36,564 KB
testcase_24 AC 49 ms
36,676 KB
testcase_25 AC 47 ms
36,848 KB
testcase_26 AC 51 ms
36,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main216 {
	
	public static void out (Object o) {
		System.out.println(o);
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		int n = Integer.parseInt(br.readLine());
		int max = 100;
		int[] score = new int[max + 1];
		String[] line1 = br.readLine().split(" ");
		String[] line2 = br.readLine().split(" ");
		
		for (int i = 0; i < n; i++) {
			int s = Integer.parseInt(line1[i]);
			int w = Integer.parseInt(line2[i]);
			score[w] += s;
		}
		
		int maxScore = -1;
		for (int i = 1; i <= max; i++) {
			maxScore = Math.max(maxScore , score[i]);
		}
		
		out(score[0] >= maxScore ? "YES" : "NO");
		
	}
}
0