結果

問題 No.216 FAC
ユーザー uafr_csuafr_cs
提出日時 2015-05-29 00:51:55
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 688 bytes
コンパイル時間 2,065 ms
コンパイル使用メモリ 74,300 KB
実行使用メモリ 41,896 KB
最終ジャッジ日時 2024-07-06 10:15:22
合計ジャッジ時間 5,744 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,264 KB
testcase_01 AC 114 ms
41,080 KB
testcase_02 AC 118 ms
41,092 KB
testcase_03 RE -
testcase_04 AC 118 ms
41,528 KB
testcase_05 RE -
testcase_06 AC 102 ms
40,932 KB
testcase_07 AC 103 ms
41,244 KB
testcase_08 AC 120 ms
41,104 KB
testcase_09 AC 116 ms
40,980 KB
testcase_10 AC 118 ms
41,372 KB
testcase_11 AC 114 ms
41,048 KB
testcase_12 AC 110 ms
40,964 KB
testcase_13 RE -
testcase_14 AC 100 ms
41,048 KB
testcase_15 RE -
testcase_16 AC 122 ms
41,416 KB
testcase_17 RE -
testcase_18 AC 126 ms
41,424 KB
testcase_19 RE -
testcase_20 RE -
testcase_21 AC 125 ms
41,376 KB
testcase_22 RE -
testcase_23 AC 122 ms
41,896 KB
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		int[] as = new int[N];
		int[] bs = new int[N];
		
		for(int i = 0; i < N; i++){
			final int a = sc.nextInt();
			as[i] = a;
		}
		
		int[] points = new int[100];
		for(int i = 0; i < N; i++){
			final int b = sc.nextInt();
			
			points[b] += as[i];
		}
		
		int max = Integer.MIN_VALUE, max_pos = -1;
		for(int i = 0; i < 100; i++){
			if(max < points[i]){
				max = points[i];
				max_pos = i;
			}
		}
		
		
		System.out.println(max_pos == 0 ? "YES" : "NO");
	}
	
}
0