結果

問題 No.253 ロウソクの長さ
ユーザー 37zigen37zigen
提出日時 2016-03-22 16:54:17
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 412 bytes
コンパイル時間 2,284 ms
コンパイル使用メモリ 76,400 KB
実行使用メモリ 71,864 KB
平均クエリ数 16.72
最終ジャッジ日時 2024-07-16 08:49:56
合計ジャッジ時間 12,740 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 157 ms
69,672 KB
testcase_02 AC 195 ms
71,452 KB
testcase_03 AC 160 ms
69,736 KB
testcase_04 AC 157 ms
70,476 KB
testcase_05 AC 175 ms
71,108 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 154 ms
69,576 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 162 ms
70,040 KB
testcase_15 AC 193 ms
71,452 KB
testcase_16 AC 172 ms
70,592 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 150 ms
70,180 KB
testcase_20 WA -
testcase_21 AC 164 ms
70,156 KB
testcase_22 AC 162 ms
70,036 KB
testcase_23 WA -
testcase_24 AC 189 ms
71,172 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 153 ms
69,684 KB
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder253;
import java.util.Scanner;
public class Main {
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		System.out.println("?100	");
		int a=sc.nextInt();
		int count=0;
		if(a==-1){
			for(int i=0;i<100;i++){
				System.out.println("?0");
				count++;
				int b=sc.nextInt();
				if(b==0){
					System.out.println("!"+count);
					System.exit(0);
				}
			}
		}
	}
}
0