結果

問題 No.24 数当てゲーム
コンテスト
ユーザー Tsukasa_Type
提出日時 2018-02-09 01:42:41
言語 Java
(openjdk 25.0.2)
コンパイル:
javac -encoding UTF8 _filename_
実行:
java -ea -Xmx700m -Xss256M -DONLINE_JUDGE=true _class_
結果
AC  
実行時間 58 ms / 5,000 ms
コード長 628 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 1,584 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 41,728 KB
最終ジャッジ日時 2026-04-18 04:24:01
合計ジャッジ時間 3,063 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge2_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int n = sc.nextInt();
		int[] ints = 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 s = sc.next();
			if (s.equals("NO")) {
				ints[a]++;
				ints[b]++;
				ints[c]++;
				ints[d]++;
			}
			else {
				for (int j=0; j<10; j++) {
					if (j!=a && j!=b && j!=c && j!=d) {
						ints[j]++;
					}
				}
			}
		}
		
		for (int i=0; i<10; i++) {
			if (ints[i]==0) {System.out.println(i);}
		}
	}
}
0