結果

問題 No.216 FAC
ユーザー 4A9GN4A9GN
提出日時 2016-07-21 22:48:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 163 ms / 1,000 ms
コード長 1,276 bytes
コンパイル時間 2,350 ms
コンパイル使用メモリ 79,188 KB
実行使用メモリ 54,408 KB
最終ジャッジ日時 2024-11-06 07:50:16
合計ジャッジ時間 7,452 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,032 KB
testcase_01 AC 137 ms
53,896 KB
testcase_02 AC 138 ms
53,976 KB
testcase_03 AC 154 ms
54,168 KB
testcase_04 AC 144 ms
54,184 KB
testcase_05 AC 145 ms
54,176 KB
testcase_06 AC 141 ms
53,796 KB
testcase_07 AC 142 ms
54,084 KB
testcase_08 AC 141 ms
53,880 KB
testcase_09 AC 139 ms
54,036 KB
testcase_10 AC 138 ms
54,120 KB
testcase_11 AC 140 ms
54,128 KB
testcase_12 AC 139 ms
54,068 KB
testcase_13 AC 139 ms
53,984 KB
testcase_14 AC 143 ms
54,120 KB
testcase_15 AC 141 ms
54,040 KB
testcase_16 AC 159 ms
54,076 KB
testcase_17 AC 163 ms
54,160 KB
testcase_18 AC 160 ms
53,916 KB
testcase_19 AC 154 ms
54,200 KB
testcase_20 AC 155 ms
54,348 KB
testcase_21 AC 158 ms
54,304 KB
testcase_22 AC 162 ms
54,408 KB
testcase_23 AC 157 ms
54,104 KB
testcase_24 AC 159 ms
54,008 KB
testcase_25 AC 161 ms
54,084 KB
testcase_26 AC 136 ms
53,980 KB
権限があれば一括ダウンロードができます

ソースコード

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 < 101; i++) 
            peopleScore.add(i, 0);
        for (i = 0; i < size; i++) {
            if (answerList.get(i) > 0) {
		int peopleNum = answerList.get(i);
                int peopleSc = peopleScore.get(peopleNum);
                int addScore = scoreList.get(i);
                peopleScore.set(peopleNum, peopleSc+addScore);
            } else emptyScore += scoreList.get(i);
        }
        if (emptyScore >= Collections.max(peopleScore))
            System.out.println("YES");
        else
            System.out.println("NO");
    }
}
0