結果

問題 No.216 FAC
ユーザー 練習生練習生
提出日時 2015-08-18 08:04:05
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 901 bytes
コンパイル時間 2,968 ms
コンパイル使用メモリ 75,344 KB
実行使用メモリ 54,308 KB
最終ジャッジ日時 2024-07-18 10:09:07
合計ジャッジ時間 7,203 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
54,088 KB
testcase_01 AC 119 ms
54,100 KB
testcase_02 AC 113 ms
53,812 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 115 ms
54,164 KB
testcase_07 AC 117 ms
54,160 KB
testcase_08 AC 105 ms
53,140 KB
testcase_09 AC 117 ms
53,944 KB
testcase_10 AC 108 ms
53,080 KB
testcase_11 AC 121 ms
53,940 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 121 ms
53,916 KB
testcase_15 RE -
testcase_16 AC 134 ms
54,132 KB
testcase_17 AC 132 ms
53,948 KB
testcase_18 AC 136 ms
54,308 KB
testcase_19 AC 137 ms
54,108 KB
testcase_20 AC 130 ms
54,116 KB
testcase_21 AC 137 ms
54,296 KB
testcase_22 AC 136 ms
54,204 KB
testcase_23 AC 136 ms
54,104 KB
testcase_24 AC 139 ms
54,008 KB
testcase_25 AC 123 ms
53,484 KB
testcase_26 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No216 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int kScore = 0;
		int n = sc.nextInt();
		int[] score = new int[n];
		int[] answer = new int[n];
		// スコア一覧を配列に格納
		for(int i = 0; i < n; i++){
			score[i] = sc.nextInt();
		}
		// 解答者に得点を追加
		for(int i = 0; i < n; i++){
			int kaitou = sc.nextInt();
			if(kaitou != 0){
				// 解答者がいる場合
				kaitou--;
				answer[kaitou] += score[i];
			}else{
				// 解答者がいない場合
				kScore += score[i];
			}
		}
		sc.close();
		// k君以外の解答者で最高得点のものを検索
		int max = 0;
		for(int i = 0; i < n; i++){
			if(answer[i] > max){
				max = answer[i];
			}
		}
		// 優勝できるか判定
		if(kScore >= max){
			System.out.println("YES");
		}else{
			System.out.println("NO");
		}
	}
}
0