結果

問題 No.216 FAC
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-14 17:33:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 162 ms / 1,000 ms
コード長 499 bytes
コンパイル時間 2,182 ms
コンパイル使用メモリ 74,844 KB
実行使用メモリ 54,380 KB
最終ジャッジ日時 2024-09-13 11:29:32
合計ジャッジ時間 6,959 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,716 KB
testcase_01 AC 133 ms
54,156 KB
testcase_02 AC 134 ms
53,992 KB
testcase_03 AC 147 ms
54,380 KB
testcase_04 AC 139 ms
53,936 KB
testcase_05 AC 142 ms
53,832 KB
testcase_06 AC 136 ms
54,024 KB
testcase_07 AC 136 ms
53,696 KB
testcase_08 AC 135 ms
54,140 KB
testcase_09 AC 134 ms
53,856 KB
testcase_10 AC 135 ms
53,988 KB
testcase_11 AC 133 ms
53,832 KB
testcase_12 AC 134 ms
54,044 KB
testcase_13 AC 134 ms
53,908 KB
testcase_14 AC 135 ms
54,048 KB
testcase_15 AC 133 ms
54,120 KB
testcase_16 AC 151 ms
54,044 KB
testcase_17 AC 149 ms
54,152 KB
testcase_18 AC 147 ms
53,856 KB
testcase_19 AC 147 ms
53,900 KB
testcase_20 AC 147 ms
53,724 KB
testcase_21 AC 157 ms
54,180 KB
testcase_22 AC 147 ms
54,080 KB
testcase_23 AC 158 ms
54,096 KB
testcase_24 AC 162 ms
54,072 KB
testcase_25 AC 151 ms
54,072 KB
testcase_26 AC 134 ms
53,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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