結果
問題 | No.253 ロウソクの長さ |
ユーザー | takeya_okino |
提出日時 | 2019-08-09 20:26:05 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 600 bytes |
コンパイル時間 | 2,272 ms |
コンパイル使用メモリ | 76,232 KB |
実行使用メモリ | 72,656 KB |
平均クエリ数 | 29.33 |
最終ジャッジ日時 | 2024-07-16 17:53:19 |
合計ジャッジ時間 | 15,373 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 186 ms
70,824 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 184 ms
72,656 KB |
testcase_06 | WA | - |
testcase_07 | AC | 183 ms
70,628 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 179 ms
70,388 KB |
testcase_11 | WA | - |
testcase_12 | AC | 170 ms
69,892 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 168 ms
69,952 KB |
testcase_16 | AC | 178 ms
69,488 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 169 ms
69,876 KB |
testcase_22 | WA | - |
testcase_23 | AC | 174 ms
70,104 KB |
testcase_24 | WA | - |
testcase_25 | AC | 169 ms
69,640 KB |
testcase_26 | WA | - |
testcase_27 | AC | 167 ms
70,132 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 182 ms
70,700 KB |
testcase_31 | WA | - |
testcase_32 | AC | 185 ms
70,900 KB |
testcase_33 | AC | 167 ms
69,632 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int p = 0; int l = 0; int r = (int)Math.pow(10, 9) + 1; int ans = 0; 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; p++; } else if(t == 1) { l = med; p++; } else { ans = med + p; System.out.println("! " + ans); System.out.flush(); break; } } } }