結果

問題 No.216 FAC
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-10 22:44:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 152 ms / 1,000 ms
コード長 633 bytes
コンパイル時間 2,603 ms
コンパイル使用メモリ 75,240 KB
実行使用メモリ 54,296 KB
最終ジャッジ日時 2024-11-06 13:30:30
合計ジャッジ時間 7,586 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
54,040 KB
testcase_01 AC 136 ms
54,224 KB
testcase_02 AC 136 ms
53,912 KB
testcase_03 AC 148 ms
54,040 KB
testcase_04 AC 142 ms
54,028 KB
testcase_05 AC 140 ms
54,208 KB
testcase_06 AC 134 ms
54,004 KB
testcase_07 AC 135 ms
53,728 KB
testcase_08 AC 136 ms
54,144 KB
testcase_09 AC 133 ms
53,992 KB
testcase_10 AC 138 ms
53,984 KB
testcase_11 AC 135 ms
54,244 KB
testcase_12 AC 135 ms
53,824 KB
testcase_13 AC 136 ms
54,136 KB
testcase_14 AC 133 ms
54,048 KB
testcase_15 AC 136 ms
54,096 KB
testcase_16 AC 152 ms
54,176 KB
testcase_17 AC 150 ms
54,044 KB
testcase_18 AC 147 ms
54,296 KB
testcase_19 AC 149 ms
53,972 KB
testcase_20 AC 145 ms
54,240 KB
testcase_21 AC 147 ms
54,224 KB
testcase_22 AC 150 ms
53,980 KB
testcase_23 AC 149 ms
54,244 KB
testcase_24 AC 147 ms
54,116 KB
testcase_25 AC 150 ms
54,236 KB
testcase_26 AC 134 ms
54,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[100]?"YES":"NO");
	}
}
0