結果

問題 No.253 ロウソクの長さ
ユーザー 37zigen37zigen
提出日時 2016-03-22 17:36:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 222 ms / 2,000 ms
コード長 1,184 bytes
コンパイル時間 2,505 ms
コンパイル使用メモリ 80,140 KB
実行使用メモリ 72,224 KB
平均クエリ数 34.19
最終ジャッジ日時 2024-07-16 23:07:47
合計ジャッジ時間 12,386 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 222 ms
71,848 KB
testcase_01 AC 197 ms
71,012 KB
testcase_02 AC 211 ms
70,740 KB
testcase_03 AC 183 ms
70,256 KB
testcase_04 AC 194 ms
70,828 KB
testcase_05 AC 185 ms
70,440 KB
testcase_06 AC 204 ms
71,960 KB
testcase_07 AC 206 ms
71,656 KB
testcase_08 AC 199 ms
71,264 KB
testcase_09 AC 184 ms
70,756 KB
testcase_10 AC 203 ms
71,868 KB
testcase_11 AC 219 ms
72,044 KB
testcase_12 AC 208 ms
71,360 KB
testcase_13 AC 217 ms
71,892 KB
testcase_14 AC 191 ms
71,052 KB
testcase_15 AC 210 ms
70,692 KB
testcase_16 AC 193 ms
70,828 KB
testcase_17 AC 167 ms
70,940 KB
testcase_18 AC 205 ms
71,552 KB
testcase_19 AC 187 ms
70,496 KB
testcase_20 AC 219 ms
71,952 KB
testcase_21 AC 201 ms
71,052 KB
testcase_22 AC 192 ms
70,636 KB
testcase_23 AC 204 ms
71,400 KB
testcase_24 AC 205 ms
71,120 KB
testcase_25 AC 210 ms
71,908 KB
testcase_26 AC 221 ms
71,680 KB
testcase_27 AC 222 ms
71,804 KB
testcase_28 AC 218 ms
71,708 KB
testcase_29 AC 221 ms
71,892 KB
testcase_30 AC 221 ms
71,716 KB
testcase_31 AC 221 ms
72,224 KB
testcase_32 AC 222 ms
71,612 KB
testcase_33 AC 219 ms
71,824 KB
testcase_34 AC 190 ms
70,692 KB
testcase_35 AC 219 ms
71,484 KB
権限があれば一括ダウンロードができます

ソースコード

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(1000000000);
		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=1000000000;
			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){
					if(upper==low+1){
						System.out.println("!"+(upper+count));
						sc.close();
						System.exit(0);
					}
					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