結果
問題 | No.24 数当てゲーム |
ユーザー | ohagi_1182 |
提出日時 | 2017-10-21 15:29:32 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 139 ms / 5,000 ms |
コード長 | 636 bytes |
コンパイル時間 | 2,178 ms |
コンパイル使用メモリ | 74,524 KB |
実行使用メモリ | 54,348 KB |
最終ジャッジ日時 | 2024-11-21 12:30:55 |
合計ジャッジ時間 | 4,262 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 10 |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int[] x = new int[10]; for(int i = 0 ; i < n ; i++) { int a = sc.nextInt(); int b = sc.nextInt(); int c = sc.nextInt(); int d = sc.nextInt(); String e = sc.next(); if(e.equals("YES")) { x[a]++; x[b]++; x[c]++; x[d]++; } else { x[a] -= 100; x[b] -= 100; x[c] -= 100; x[d] -= 100; } } int ans = -1; int point = -1; for(int i = 0 ; i < 10 ; i++) { if(x[i] > point) { ans = i; point = x[i]; } } System.out.println(ans); } }