結果

問題 No.216 FAC
ユーザー koukonkokoukonko
提出日時 2015-12-17 13:22:35
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 957 bytes
コンパイル時間 2,148 ms
コンパイル使用メモリ 77,976 KB
実行使用メモリ 52,440 KB
最終ジャッジ日時 2024-09-16 07:30:52
合計ジャッジ時間 4,698 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,984 KB
testcase_01 AC 52 ms
37,120 KB
testcase_02 AC 54 ms
37,112 KB
testcase_03 AC 55 ms
37,068 KB
testcase_04 AC 54 ms
36,580 KB
testcase_05 AC 54 ms
36,884 KB
testcase_06 AC 54 ms
37,052 KB
testcase_07 AC 52 ms
36,716 KB
testcase_08 AC 54 ms
37,020 KB
testcase_09 AC 53 ms
36,708 KB
testcase_10 AC 53 ms
36,896 KB
testcase_11 AC 52 ms
37,128 KB
testcase_12 AC 53 ms
36,880 KB
testcase_13 AC 52 ms
37,160 KB
testcase_14 AC 52 ms
36,920 KB
testcase_15 AC 51 ms
37,168 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 52 ms
36,912 KB
testcase_19 AC 53 ms
37,112 KB
testcase_20 AC 54 ms
36,940 KB
testcase_21 AC 55 ms
37,088 KB
testcase_22 AC 53 ms
37,028 KB
testcase_23 AC 53 ms
37,008 KB
testcase_24 AC 53 ms
36,992 KB
testcase_25 AC 52 ms
36,900 KB
testcase_26 AC 51 ms
37,060 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