結果

問題 No.253 ロウソクの長さ
ユーザー takeya_okinotakeya_okino
提出日時 2019-08-10 00:13:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 192 ms / 2,000 ms
コード長 1,034 bytes
コンパイル時間 2,738 ms
コンパイル使用メモリ 79,084 KB
実行使用メモリ 71,004 KB
平均クエリ数 35.08
最終ジャッジ日時 2024-07-17 02:20:46
合計ジャッジ時間 10,877 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 168 ms
69,436 KB
testcase_01 AC 181 ms
70,664 KB
testcase_02 AC 191 ms
70,780 KB
testcase_03 AC 167 ms
69,540 KB
testcase_04 AC 170 ms
70,348 KB
testcase_05 AC 174 ms
70,188 KB
testcase_06 AC 183 ms
70,676 KB
testcase_07 AC 166 ms
69,600 KB
testcase_08 AC 180 ms
70,452 KB
testcase_09 AC 156 ms
70,036 KB
testcase_10 AC 175 ms
70,116 KB
testcase_11 AC 179 ms
69,720 KB
testcase_12 AC 177 ms
69,964 KB
testcase_13 AC 170 ms
70,432 KB
testcase_14 AC 177 ms
70,200 KB
testcase_15 AC 192 ms
70,636 KB
testcase_16 AC 181 ms
70,268 KB
testcase_17 AC 181 ms
70,992 KB
testcase_18 AC 168 ms
69,408 KB
testcase_19 AC 159 ms
69,420 KB
testcase_20 AC 180 ms
71,004 KB
testcase_21 AC 183 ms
70,092 KB
testcase_22 AC 178 ms
70,976 KB
testcase_23 AC 165 ms
69,660 KB
testcase_24 AC 188 ms
70,544 KB
testcase_25 AC 176 ms
69,772 KB
testcase_26 AC 180 ms
69,856 KB
testcase_27 AC 184 ms
70,860 KB
testcase_28 AC 179 ms
69,452 KB
testcase_29 AC 180 ms
70,500 KB
testcase_30 AC 175 ms
70,480 KB
testcase_31 AC 176 ms
70,440 KB
testcase_32 AC 161 ms
69,552 KB
testcase_33 AC 177 ms
70,516 KB
testcase_34 AC 170 ms
70,928 KB
testcase_35 AC 180 ms
70,684 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;
          break; 
        }
        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