結果
問題 | No.216 FAC |
ユーザー | TwinkleStar74 |
提出日時 | 2017-10-03 03:08:04 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 56 ms / 1,000 ms |
コード長 | 1,094 bytes |
コンパイル時間 | 3,399 ms |
コンパイル使用メモリ | 77,280 KB |
実行使用メモリ | 52,140 KB |
最終ジャッジ日時 | 2024-11-15 22:57:23 |
合計ジャッジ時間 | 5,606 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 54 ms
50,156 KB |
testcase_01 | AC | 55 ms
50,048 KB |
testcase_02 | AC | 53 ms
49,932 KB |
testcase_03 | AC | 54 ms
50,316 KB |
testcase_04 | AC | 54 ms
49,960 KB |
testcase_05 | AC | 54 ms
50,004 KB |
testcase_06 | AC | 54 ms
49,812 KB |
testcase_07 | AC | 53 ms
49,896 KB |
testcase_08 | AC | 54 ms
50,268 KB |
testcase_09 | AC | 54 ms
50,120 KB |
testcase_10 | AC | 54 ms
49,932 KB |
testcase_11 | AC | 53 ms
50,080 KB |
testcase_12 | AC | 55 ms
49,924 KB |
testcase_13 | AC | 54 ms
49,996 KB |
testcase_14 | AC | 54 ms
49,880 KB |
testcase_15 | AC | 53 ms
50,324 KB |
testcase_16 | AC | 55 ms
52,140 KB |
testcase_17 | AC | 55 ms
49,924 KB |
testcase_18 | AC | 54 ms
50,256 KB |
testcase_19 | AC | 54 ms
49,896 KB |
testcase_20 | AC | 54 ms
50,076 KB |
testcase_21 | AC | 54 ms
50,116 KB |
testcase_22 | AC | 54 ms
49,800 KB |
testcase_23 | AC | 55 ms
50,336 KB |
testcase_24 | AC | 55 ms
50,020 KB |
testcase_25 | AC | 54 ms
49,820 KB |
testcase_26 | AC | 56 ms
50,164 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class No216 { public static void main(String[] args) { try{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int N = Integer.parseInt(br.readLine()); String[] str = br.readLine().split(" "); String[] str2 = br.readLine().split(" "); int[] player = new int[101]; sakusei(N,player,str,str2); Hantei(player); }catch(IOException e){ e.getStackTrace(); }catch(NumberFormatException e){ e.getStackTrace(); } } public static void sakusei(int N,int[] x, String[] a, String[] b){ int[] score= new int[N]; int[] ansP = new int[N]; for(int i=0; i < N; i++){ score[i] = Integer.parseInt(a[i]); ansP[i] = Integer.parseInt(b[i]); x[ansP[i]] += score[i]; } } public static int getMax(int[] x){ int max = 0; for(int i=0; i< x.length; i++) if(x[i] > max) max = x[i]; return max; } public static void Hantei(int[] x){ if(x[0] >= getMax(x)) System.out.println("YES"); else System.out.println("NO"); } }