結果

問題 No.216 FAC
ユーザー cande398cande398
提出日時 2017-10-16 00:40:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 1,000 ms
コード長 596 bytes
コンパイル時間 2,235 ms
コンパイル使用メモリ 74,440 KB
実行使用メモリ 54,144 KB
最終ジャッジ日時 2024-11-17 18:53:12
合計ジャッジ時間 5,536 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
54,144 KB
testcase_01 AC 105 ms
53,784 KB
testcase_02 AC 94 ms
53,244 KB
testcase_03 AC 117 ms
53,896 KB
testcase_04 AC 112 ms
53,916 KB
testcase_05 AC 113 ms
54,024 KB
testcase_06 AC 104 ms
53,784 KB
testcase_07 AC 105 ms
53,900 KB
testcase_08 AC 107 ms
54,008 KB
testcase_09 AC 100 ms
52,752 KB
testcase_10 AC 93 ms
52,716 KB
testcase_11 AC 103 ms
53,740 KB
testcase_12 AC 97 ms
53,008 KB
testcase_13 AC 105 ms
53,680 KB
testcase_14 AC 97 ms
52,972 KB
testcase_15 AC 95 ms
52,960 KB
testcase_16 AC 125 ms
54,132 KB
testcase_17 AC 118 ms
53,896 KB
testcase_18 AC 120 ms
54,072 KB
testcase_19 AC 115 ms
54,008 KB
testcase_20 AC 123 ms
53,776 KB
testcase_21 AC 114 ms
53,916 KB
testcase_22 AC 115 ms
53,748 KB
testcase_23 AC 110 ms
53,732 KB
testcase_24 AC 116 ms
53,884 KB
testcase_25 AC 119 ms
54,056 KB
testcase_26 AC 96 ms
52,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        int[] sum = new int[101];
        int i, num = sc.nextInt();
        int[] score = new int[num];
        for(i=0;i<num;i++){
            score[i] = sc.nextInt();
        }
        for(i=0;i<num;i++){
            sum[sc.nextInt()] += score[i];
        }
        for(i=1;i<101;i++){
            if(sum[0] < sum[i]){
                System.out.println("NO");
                break;
            }
            if(i==100)System.out.println("YES");
        }
    }
}
0