結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,776 KB
testcase_01 AC 113 ms
40,212 KB
testcase_02 AC 108 ms
41,112 KB
testcase_03 RE -
testcase_04 AC 124 ms
41,532 KB
testcase_05 RE -
testcase_06 WA -
testcase_07 AC 121 ms
41,260 KB
testcase_08 AC 116 ms
41,460 KB
testcase_09 AC 117 ms
40,304 KB
testcase_10 AC 120 ms
41,344 KB
testcase_11 AC 104 ms
41,428 KB
testcase_12 AC 119 ms
41,704 KB
testcase_13 RE -
testcase_14 AC 119 ms
41,512 KB
testcase_15 RE -
testcase_16 AC 130 ms
41,328 KB
testcase_17 RE -
testcase_18 AC 141 ms
41,512 KB
testcase_19 RE -
testcase_20 RE -
testcase_21 AC 143 ms
41,764 KB
testcase_22 RE -
testcase_23 AC 140 ms
41,884 KB
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
権限があれば一括ダウンロードができます

ソースコード

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[100];
        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