結果

問題 No.24 数当てゲーム
ユーザー カニ戯(ryカニ戯(ry
提出日時 2015-02-26 16:39:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 337 bytes
コンパイル時間 2,029 ms
コンパイル使用メモリ 74,548 KB
実行使用メモリ 54,608 KB
最終ジャッジ日時 2024-06-23 23:49:09
合計ジャッジ時間 4,087 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,356 KB
testcase_01 AC 128 ms
54,016 KB
testcase_02 AC 132 ms
54,456 KB
testcase_03 AC 135 ms
54,608 KB
testcase_04 AC 133 ms
54,108 KB
testcase_05 AC 135 ms
54,204 KB
testcase_06 AC 132 ms
54,168 KB
testcase_07 AC 133 ms
54,404 KB
testcase_08 AC 116 ms
53,088 KB
testcase_09 AC 131 ms
54,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main {
	public static void main(String[] a) {
		Scanner s=new Scanner(System.in);
		int i,P,E=1023;
		s.nextInt();
		while(s.hasNext()){
			for(i=0,P=0;i++<4;)P|=(int)Math.pow(2, s.nextInt());
			E&=("NO".equals(s.next())?~P:P)&1023;
		}
		System.out.println((int)(Math.log(E)/Math.log(2)));
	}
}
0