結果

問題 No.216 FAC
ユーザー 練習生練習生
提出日時 2015-08-18 08:13:12
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 903 bytes
コンパイル時間 3,334 ms
コンパイル使用メモリ 74,396 KB
実行使用メモリ 54,372 KB
最終ジャッジ日時 2024-07-18 10:09:23
合計ジャッジ時間 7,263 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
52,744 KB
testcase_01 AC 108 ms
52,716 KB
testcase_02 AC 120 ms
53,944 KB
testcase_03 AC 135 ms
54,088 KB
testcase_04 AC 127 ms
54,284 KB
testcase_05 AC 129 ms
53,964 KB
testcase_06 AC 124 ms
53,864 KB
testcase_07 AC 110 ms
52,984 KB
testcase_08 AC 107 ms
53,152 KB
testcase_09 AC 121 ms
54,092 KB
testcase_10 AC 120 ms
54,184 KB
testcase_11 AC 120 ms
54,064 KB
testcase_12 AC 123 ms
54,088 KB
testcase_13 WA -
testcase_14 AC 121 ms
54,208 KB
testcase_15 WA -
testcase_16 AC 133 ms
54,068 KB
testcase_17 AC 133 ms
54,284 KB
testcase_18 AC 147 ms
54,372 KB
testcase_19 AC 133 ms
53,832 KB
testcase_20 AC 137 ms
54,180 KB
testcase_21 AC 134 ms
54,316 KB
testcase_22 AC 127 ms
53,748 KB
testcase_23 AC 131 ms
54,348 KB
testcase_24 AC 133 ms
54,244 KB
testcase_25 AC 150 ms
54,224 KB
testcase_26 AC 101 ms
52,600 KB
権限があれば一括ダウンロードができます

ソースコード

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[100];
		// スコア一覧を配列に格納
		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