結果
問題 | No.24 数当てゲーム |
ユーザー | m2543315647 |
提出日時 | 2015-05-13 12:28:08 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 122 ms / 5,000 ms |
コード長 | 802 bytes |
コンパイル時間 | 3,497 ms |
コンパイル使用メモリ | 75,684 KB |
実行使用メモリ | 54,208 KB |
最終ジャッジ日時 | 2024-07-06 01:21:22 |
合計ジャッジ時間 | 5,164 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 10 |
ソースコード
import java.util.Arrays; import java.util.Scanner; public class No24 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); final int n = sc.nextInt(); int a, b, c, d; boolean r[] = new boolean[10]; Arrays.fill(r, true); for (int i = 0; i < n; i++) { a = sc.nextInt(); b = sc.nextInt(); c = sc.nextInt(); d = sc.nextInt(); if (sc.next().equals("YES")) { for (int j = 0; j < 10; j++) if (!(j == a || j == b || j == c || j == d)) r[j] = false; } else { r[a] = r[b] = r[c] = r[d] = false; } } for(int i=0;i<10;i++)if(r[i])System.out.println(i); } }