結果

問題 No.216 FAC
ユーザー 4A9GN4A9GN
提出日時 2016-07-21 22:22:52
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 1,352 bytes
コンパイル時間 2,440 ms
コンパイル使用メモリ 79,240 KB
実行使用メモリ 54,640 KB
最終ジャッジ日時 2024-11-06 07:47:34
合計ジャッジ時間 7,604 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
54,044 KB
testcase_01 AC 136 ms
54,184 KB
testcase_02 AC 136 ms
53,816 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 138 ms
53,972 KB
testcase_07 AC 137 ms
54,048 KB
testcase_08 WA -
testcase_09 AC 139 ms
54,000 KB
testcase_10 WA -
testcase_11 AC 140 ms
53,884 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 139 ms
54,420 KB
testcase_15 RE -
testcase_16 AC 152 ms
54,048 KB
testcase_17 AC 152 ms
54,464 KB
testcase_18 AC 158 ms
53,952 KB
testcase_19 AC 156 ms
54,136 KB
testcase_20 WA -
testcase_21 AC 154 ms
54,080 KB
testcase_22 AC 156 ms
54,112 KB
testcase_23 AC 162 ms
54,104 KB
testcase_24 AC 159 ms
54,028 KB
testcase_25 AC 157 ms
54,144 KB
testcase_26 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.ArrayList;
import java.util.Collections;

public class Main {
    static public void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int size = sc.nextInt();
        int emptyScore = 0;
        int i;
        ArrayList<Integer> scoreList = new ArrayList<Integer>();
        for (i = 0; i < size; i++) //各問題の点数記録
            scoreList.add(sc.nextInt());
        ArrayList<Integer> answerList = new ArrayList<Integer>();
        for (i = 0; i < size; i++) //各問題の正答者記録
            answerList.add(sc.nextInt());
        ArrayList<Integer> peopleScore = new ArrayList<Integer>(); //出場者番号ごとの点数
	for (i = 0; i < size+1; i++) 
            peopleScore.add(i, 0);
        for (i = 0; i < size; i++) {
            if (answerList.get(i) >= 1) {
		int peopleNum = answerList.get(i);
                int peopleSc = peopleScore.get(peopleNum);
                int addScore = scoreList.get(i);
                peopleScore.add(peopleNum, peopleSc+addScore);
            } else emptyScore += scoreList.get(i);
        }
        Collections.sort(peopleScore);
        Collections.reverse(peopleScore);

        if (emptyScore >= peopleScore.get(0))
            System.out.println("YES");
        else
            System.out.println("NO");
    }
}
0