結果
問題 | No.24 数当てゲーム |
ユーザー | ちよちゃん |
提出日時 | 2016-05-26 16:47:08 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 781 bytes |
コンパイル時間 | 3,634 ms |
コンパイル使用メモリ | 77,336 KB |
実行使用メモリ | 54,392 KB |
最終ジャッジ日時 | 2024-10-07 15:55:23 |
合計ジャッジ時間 | 5,870 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 132 ms
54,120 KB |
testcase_01 | AC | 129 ms
54,168 KB |
testcase_02 | AC | 130 ms
53,868 KB |
testcase_03 | AC | 133 ms
54,052 KB |
testcase_04 | AC | 131 ms
54,116 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 133 ms
54,000 KB |
testcase_08 | AC | 133 ms
54,200 KB |
testcase_09 | WA | - |
ソースコード
package yukicoder; import java.util.Scanner; public class Yuki24_{ public static void main(String[] args) { Scanner scan = new Scanner(System.in); int num = scan.nextInt(); int arr[][] = new int[num][4]; String[] ans = new String[num]; int numbers[] = new int[10]; for (int i = 0; i < num; i++ ) { for (int j = 0; j < 4; j++ ) { arr[i][j] = scan.nextInt(); } ans[i] = scan.next(); } scan.close(); for (int i = 0; i < num; i++ ) { for (int j = 0; j < 4; j++ ) { if("YES".equals(ans[i])){ numbers[arr[i][j]] += 1; } if("NO".equals(ans[i])){ numbers[arr[i][j]] -= 1; } } } int jug = 0; for(int i = 0 ;i <= 9; i++ ) { if(jug <= numbers[i]){ jug = i; } } System.out.println(jug); } }