結果

問題 No.216 FAC
ユーザー uafr_csuafr_cs
提出日時 2015-05-29 00:52:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 1,000 ms
コード長 688 bytes
コンパイル時間 2,086 ms
コンパイル使用メモリ 73,852 KB
実行使用メモリ 41,600 KB
最終ジャッジ日時 2024-10-15 00:36:39
合計ジャッジ時間 6,321 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
40,760 KB
testcase_01 AC 116 ms
41,056 KB
testcase_02 AC 115 ms
40,872 KB
testcase_03 AC 125 ms
41,140 KB
testcase_04 AC 135 ms
40,932 KB
testcase_05 AC 123 ms
41,128 KB
testcase_06 AC 119 ms
40,868 KB
testcase_07 AC 124 ms
41,008 KB
testcase_08 AC 122 ms
41,108 KB
testcase_09 AC 117 ms
40,560 KB
testcase_10 AC 117 ms
40,852 KB
testcase_11 AC 113 ms
39,492 KB
testcase_12 AC 120 ms
41,100 KB
testcase_13 AC 116 ms
40,624 KB
testcase_14 AC 116 ms
40,896 KB
testcase_15 AC 113 ms
40,472 KB
testcase_16 AC 133 ms
41,600 KB
testcase_17 AC 135 ms
41,592 KB
testcase_18 AC 135 ms
41,172 KB
testcase_19 AC 134 ms
41,248 KB
testcase_20 AC 131 ms
40,920 KB
testcase_21 AC 130 ms
41,416 KB
testcase_22 AC 133 ms
41,168 KB
testcase_23 AC 126 ms
41,256 KB
testcase_24 AC 130 ms
41,344 KB
testcase_25 AC 128 ms
41,392 KB
testcase_26 AC 114 ms
40,884 KB
権限があれば一括ダウンロードができます

ソースコード

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[101];
		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 < 101; i++){
			if(max < points[i]){
				max = points[i];
				max_pos = i;
			}
		}
		
		
		System.out.println(max_pos == 0 ? "YES" : "NO");
	}
	
}
0