結果

問題 No.216 FAC
ユーザー shinwisteriashinwisteria
提出日時 2018-02-21 22:33:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 152 ms / 1,000 ms
コード長 633 bytes
コンパイル時間 3,294 ms
コンパイル使用メモリ 74,516 KB
実行使用メモリ 54,412 KB
最終ジャッジ日時 2024-09-19 19:53:33
合計ジャッジ時間 8,128 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,048 KB
testcase_01 AC 127 ms
54,028 KB
testcase_02 AC 131 ms
53,972 KB
testcase_03 AC 138 ms
54,256 KB
testcase_04 AC 136 ms
54,224 KB
testcase_05 AC 135 ms
53,972 KB
testcase_06 AC 116 ms
52,588 KB
testcase_07 AC 128 ms
54,168 KB
testcase_08 AC 127 ms
53,924 KB
testcase_09 AC 125 ms
53,968 KB
testcase_10 AC 135 ms
54,008 KB
testcase_11 AC 125 ms
53,972 KB
testcase_12 AC 127 ms
54,192 KB
testcase_13 AC 130 ms
53,928 KB
testcase_14 AC 127 ms
54,204 KB
testcase_15 AC 129 ms
54,144 KB
testcase_16 AC 141 ms
54,156 KB
testcase_17 AC 151 ms
54,176 KB
testcase_18 AC 142 ms
54,260 KB
testcase_19 AC 140 ms
54,204 KB
testcase_20 AC 138 ms
54,136 KB
testcase_21 AC 151 ms
54,288 KB
testcase_22 AC 140 ms
54,412 KB
testcase_23 AC 141 ms
54,144 KB
testcase_24 AC 152 ms
54,340 KB
testcase_25 AC 141 ms
54,188 KB
testcase_26 AC 128 ms
54,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;
public class Con216 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int N = s.nextInt();
		int[] score = new int[N];
		int[] person = new int[100];

		int rest = 0;
		for(int i = 0;i < N;i++){
			score[i] = s.nextInt();
		}
		for(int i = 0;i < N;i++){
			int num = s.nextInt();
			if(num == 0){
				rest += score[i];
			}else{
				person[num-1] += score[i];
			}
		}
		s.close();

		int max = 0;
		for(int k : person){
			if(k > max){
				max = k;
			}
		}
		if(rest >= max){
			System.out.println("YES");
		}else{
			System.out.println("NO");
		}

	}

}
0