結果

問題 No.216 FAC
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-10 22:42:55
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 635 bytes
コンパイル時間 2,421 ms
コンパイル使用メモリ 75,136 KB
実行使用メモリ 47,960 KB
最終ジャッジ日時 2024-11-06 13:22:32
合計ジャッジ時間 7,586 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 137 ms
41,164 KB
testcase_02 AC 134 ms
41,388 KB
testcase_03 AC 157 ms
41,652 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 137 ms
41,508 KB
testcase_08 AC 141 ms
41,160 KB
testcase_09 AC 139 ms
41,484 KB
testcase_10 AC 135 ms
41,212 KB
testcase_11 WA -
testcase_12 AC 131 ms
41,472 KB
testcase_13 WA -
testcase_14 AC 135 ms
41,292 KB
testcase_15 WA -
testcase_16 AC 154 ms
41,512 KB
testcase_17 AC 161 ms
41,556 KB
testcase_18 AC 150 ms
41,568 KB
testcase_19 AC 148 ms
41,712 KB
testcase_20 AC 147 ms
41,688 KB
testcase_21 AC 148 ms
41,620 KB
testcase_22 AC 149 ms
41,528 KB
testcase_23 AC 148 ms
41,580 KB
testcase_24 AC 150 ms
41,524 KB
testcase_25 AC 152 ms
41,764 KB
testcase_26 AC 136 ms
41,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public 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[] num = new int[n];
		int[] got_score = new int[101];
		for (int i=0; i<n; i++) {
			num[i] = sc.nextInt();
			got_score[num[i]] += score[i];
		}
		
		int myscore = got_score[0]; //主人公のスコアを避難させる
		got_score[0] = 0; //主人公のスコアを消して……
		Arrays.sort(got_score); //ソート。
		
		System.out.println(myscore>=got_score[n-1]?"YES":"NO");
	}
}
0