結果

問題 No.216 FAC
ユーザー koukonkokoukonko
提出日時 2015-12-17 13:26:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 52 ms / 1,000 ms
コード長 959 bytes
コンパイル時間 2,037 ms
コンパイル使用メモリ 75,772 KB
実行使用メモリ 36,896 KB
最終ジャッジ日時 2024-10-15 00:44:00
合計ジャッジ時間 4,077 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
36,608 KB
testcase_01 AC 50 ms
36,172 KB
testcase_02 AC 49 ms
36,480 KB
testcase_03 AC 48 ms
36,340 KB
testcase_04 AC 49 ms
36,548 KB
testcase_05 AC 46 ms
36,664 KB
testcase_06 AC 46 ms
36,432 KB
testcase_07 AC 50 ms
36,652 KB
testcase_08 AC 47 ms
36,532 KB
testcase_09 AC 47 ms
36,624 KB
testcase_10 AC 48 ms
36,652 KB
testcase_11 AC 49 ms
36,632 KB
testcase_12 AC 47 ms
36,684 KB
testcase_13 AC 47 ms
36,756 KB
testcase_14 AC 46 ms
36,516 KB
testcase_15 AC 46 ms
36,520 KB
testcase_16 AC 46 ms
36,596 KB
testcase_17 AC 52 ms
36,528 KB
testcase_18 AC 49 ms
36,528 KB
testcase_19 AC 48 ms
36,468 KB
testcase_20 AC 48 ms
36,528 KB
testcase_21 AC 45 ms
36,896 KB
testcase_22 AC 47 ms
36,812 KB
testcase_23 AC 49 ms
36,596 KB
testcase_24 AC 49 ms
36,512 KB
testcase_25 AC 48 ms
36,880 KB
testcase_26 AC 46 ms
36,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main(String[] args) {
		BufferedReader read = new BufferedReader(new InputStreamReader(System.in));

		try {
			int[] total = new int[100];
			int player = 0;

			int N = Integer.parseInt(read.readLine());

			String[] box = read.readLine().split(" ");
			int[] point = new int[N];
			for (int i = 0; i < N; ++i) {
				point[i] = Integer.parseInt(box[i]);
			}

			box = read.readLine().split(" ");
			for (int i = 0; i < N; ++i) {
				int index = Integer.parseInt(box[i]);
				if (index == 0) {
					player += point[i];
				} else {
					total[index - 1] += point[i];
				}
			}
			int max = -1;
			for (int i = 0; i < 100; ++i) {
				if (total[i] > max) {
					max = total[i];
				}
			}
			if (max <= player) {
				System.out.println("YES");
			} else {
				System.out.println("NO");
			}

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