結果

問題 No.253 ロウソクの長さ
ユーザー takeya_okinotakeya_okino
提出日時 2019-08-10 00:10:17
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,017 bytes
コンパイル時間 2,333 ms
コンパイル使用メモリ 79,568 KB
実行使用メモリ 73,148 KB
平均クエリ数 58.25
最終ジャッジ日時 2024-07-16 17:54:01
合計ジャッジ時間 14,081 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 173 ms
70,240 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 194 ms
70,820 KB
testcase_07 AC 188 ms
70,336 KB
testcase_08 AC 168 ms
69,996 KB
testcase_09 WA -
testcase_10 AC 180 ms
70,964 KB
testcase_11 AC 168 ms
69,732 KB
testcase_12 AC 182 ms
70,736 KB
testcase_13 AC 168 ms
69,792 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 172 ms
69,820 KB
testcase_18 AC 170 ms
70,224 KB
testcase_19 WA -
testcase_20 AC 182 ms
70,880 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 182 ms
70,536 KB
testcase_24 WA -
testcase_25 AC 167 ms
70,392 KB
testcase_26 AC 166 ms
70,372 KB
testcase_27 AC 169 ms
70,692 KB
testcase_28 AC 170 ms
71,128 KB
testcase_29 AC 167 ms
70,268 KB
testcase_30 AC 181 ms
70,196 KB
testcase_31 AC 183 ms
70,076 KB
testcase_32 AC 181 ms
70,492 KB
testcase_33 AC 171 ms
69,912 KB
testcase_34 WA -
testcase_35 AC 173 ms
70,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int p = 1;
    int l = 0;
    int r = (int)Math.pow(10, 9) + 1;
    int ans = 0;
    System.out.println("? " + 99);
    System.out.flush();
    int res = sc.nextInt();
    if(res == -1) {
      for(int i = 0; i < 99; i++) {
        System.out.println("? " + 0);
        System.out.flush();
        int t = sc.nextInt();
        if(t == 0) {
          ans = p; 
        }
        p++;
      }
    } else {
      while(l < r) {
        int med = (l + r) / 2;
        System.out.println("? " + med);
        System.out.flush();
        int t = sc.nextInt();
        if(t == -1) {
          r = med - 1;
          ans = l + p;
          l--;
        } else if(t == 1) {
          l = med;
          ans = l + 1 + p;
          r--;
        } else {
          ans = med + p;
          break;
        }
        p++;
      }
    }
    System.out.println("! " + ans);
    System.out.flush();
  }
}
0