結果

問題 No.216 FAC
ユーザー ぴろずぴろず
提出日時 2015-05-26 22:22:23
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 544 bytes
コンパイル時間 3,318 ms
コンパイル使用メモリ 75,324 KB
実行使用メモリ 54,300 KB
最終ジャッジ日時 2024-07-06 09:12:11
合計ジャッジ時間 6,960 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,140 KB
testcase_01 AC 133 ms
53,828 KB
testcase_02 AC 135 ms
54,268 KB
testcase_03 AC 147 ms
53,896 KB
testcase_04 AC 143 ms
53,780 KB
testcase_05 AC 139 ms
53,912 KB
testcase_06 WA -
testcase_07 AC 137 ms
53,836 KB
testcase_08 AC 135 ms
53,928 KB
testcase_09 AC 136 ms
54,012 KB
testcase_10 AC 135 ms
54,244 KB
testcase_11 AC 134 ms
53,928 KB
testcase_12 AC 136 ms
54,004 KB
testcase_13 WA -
testcase_14 AC 135 ms
54,152 KB
testcase_15 WA -
testcase_16 AC 148 ms
53,984 KB
testcase_17 AC 149 ms
54,156 KB
testcase_18 AC 149 ms
54,300 KB
testcase_19 AC 147 ms
54,084 KB
testcase_20 AC 147 ms
54,240 KB
testcase_21 AC 157 ms
53,972 KB
testcase_22 AC 156 ms
54,180 KB
testcase_23 AC 146 ms
54,256 KB
testcase_24 AC 148 ms
54,112 KB
testcase_25 AC 155 ms
54,080 KB
testcase_26 AC 134 ms
54,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no216;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] a = new int[n];
		int[] b = new int[n];
		for(int i=0;i<n;i++) {
			a[i] = sc.nextInt();
		}
		for(int i=0;i<n;i++) {
			b[i] = sc.nextInt();
		}
		int[] score = new int[101];
		for(int i=0;i<n;i++) {
			score[b[i]] += a[i];
		}
		int max = 0;
		for(int i=1;i<n;i++) {
			max = Math.max(max, score[i]);
		}
		System.out.println(score[0] >= max ? "YES" : "NO");
	}

}
0