結果

問題 No.216 FAC
ユーザー atkrymatkrym
提出日時 2016-10-23 18:06:12
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 756 bytes
コンパイル時間 2,266 ms
コンパイル使用メモリ 74,964 KB
実行使用メモリ 54,712 KB
最終ジャッジ日時 2024-05-03 04:50:33
合計ジャッジ時間 6,811 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,520 KB
testcase_01 AC 135 ms
41,724 KB
testcase_02 AC 134 ms
41,908 KB
testcase_03 AC 143 ms
41,664 KB
testcase_04 AC 142 ms
41,656 KB
testcase_05 AC 138 ms
41,300 KB
testcase_06 WA -
testcase_07 AC 116 ms
40,340 KB
testcase_08 AC 131 ms
41,228 KB
testcase_09 AC 120 ms
40,024 KB
testcase_10 AC 136 ms
41,256 KB
testcase_11 AC 129 ms
41,164 KB
testcase_12 AC 131 ms
41,560 KB
testcase_13 WA -
testcase_14 AC 117 ms
40,272 KB
testcase_15 WA -
testcase_16 AC 145 ms
41,844 KB
testcase_17 AC 149 ms
41,396 KB
testcase_18 AC 157 ms
41,784 KB
testcase_19 AC 147 ms
41,860 KB
testcase_20 AC 157 ms
41,972 KB
testcase_21 AC 145 ms
41,616 KB
testcase_22 AC 159 ms
41,748 KB
testcase_23 AC 144 ms
41,808 KB
testcase_24 AC 145 ms
41,652 KB
testcase_25 AC 151 ms
41,548 KB
testcase_26 AC 130 ms
41,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;
import java.text.*;

public class Main {
    private static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws Exception {
        int[] sum = new int[101];
        int[] score = new int[100];
        int n = sc.nextInt();
        
        for (int i = 0;i < n;i++) {
            score[i] = sc.nextInt();
        }
        
        for (int i = 0;i < n;i++) {
            sum[sc.nextInt()] += score[i];
        }
        
        int ret = 0;
        for (int i = 0;i < n;i++) {
            ret = Math.max(ret, sum[i]);
        }
        
        if (ret == sum[0]) {
            System.out.println("YES");
        } else {
            System.out.println("NO");
        }
    }
}
0