結果

問題 No.253 ロウソクの長さ
ユーザー 37zigen37zigen
提出日時 2016-03-22 17:25:56
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,055 bytes
コンパイル時間 2,565 ms
コンパイル使用メモリ 79,836 KB
実行使用メモリ 82,568 KB
平均クエリ数 32.17
最終ジャッジ日時 2024-07-16 23:08:02
合計ジャッジ時間 14,891 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 226 ms
71,692 KB
testcase_01 AC 191 ms
70,140 KB
testcase_02 AC 222 ms
70,564 KB
testcase_03 AC 201 ms
70,076 KB
testcase_04 AC 183 ms
69,896 KB
testcase_05 AC 208 ms
70,708 KB
testcase_06 AC 207 ms
71,440 KB
testcase_07 AC 223 ms
71,496 KB
testcase_08 AC 208 ms
71,160 KB
testcase_09 AC 190 ms
70,740 KB
testcase_10 AC 221 ms
71,676 KB
testcase_11 AC 219 ms
71,628 KB
testcase_12 AC 224 ms
71,892 KB
testcase_13 AC 226 ms
71,544 KB
testcase_14 AC 198 ms
71,068 KB
testcase_15 AC 214 ms
70,860 KB
testcase_16 AC 200 ms
69,820 KB
testcase_17 AC 159 ms
70,240 KB
testcase_18 AC 197 ms
71,768 KB
testcase_19 AC 179 ms
69,716 KB
testcase_20 AC 217 ms
72,000 KB
testcase_21 AC 205 ms
71,004 KB
testcase_22 AC 200 ms
71,328 KB
testcase_23 AC 225 ms
71,756 KB
testcase_24 AC 212 ms
70,808 KB
testcase_25 AC 215 ms
71,672 KB
testcase_26 AC 215 ms
71,632 KB
testcase_27 AC 212 ms
71,744 KB
testcase_28 AC 201 ms
71,892 KB
testcase_29 AC 213 ms
72,120 KB
testcase_30 AC 216 ms
71,500 KB
testcase_31 AC 214 ms
71,776 KB
testcase_32 AC 200 ms
71,664 KB
testcase_33 TLE -
testcase_34 -- -
testcase_35 -- -
権限があれば一括ダウンロードができます

ソースコード

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");
		System.err.println(101);
		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);
					sc.close();
					System.exit(0);
				}
			}
		}else if(a==1){
			int upper=(int)Math.pow(10,9);
			int low=101;
			int mid;
			int ans=101;
			while(low!=upper){
				count++;
				upper--;
				low--;
				ans--;
				mid=(int)(upper+low)/2;
				System.out.println("?"+mid);
				System.err.println("ans="+ans);
				System.err.println("upper="+upper+" low="+low);
				int r=sc.nextInt();
				if(r==1){
					low=mid;
				}else if(r==-1){
					upper=mid;
				}else if(r==0){
					System.out.println("!"+(mid+count));
					sc.close();
					System.exit(0);
				}
			}
		}else if(a==0){
			System.out.println("!100");
			sc.close();
			System.exit(0);
		}

	}
}

0