結果
問題 | No.1830 Balanced Majority |
ユーザー | rhincodon66 |
提出日時 | 2022-02-04 23:02:01 |
言語 | Kotlin (1.9.23) |
結果 |
WA
|
実行時間 | - |
コード長 | 761 bytes |
コンパイル時間 | 11,003 ms |
コンパイル使用メモリ | 426,356 KB |
実行使用メモリ | 71,480 KB |
平均クエリ数 | 11.04 |
最終ジャッジ日時 | 2024-06-11 12:38:42 |
合計ジャッジ時間 | 20,548 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 301 ms
70,776 KB |
testcase_01 | AC | 295 ms
70,572 KB |
testcase_02 | AC | 268 ms
70,448 KB |
testcase_03 | AC | 260 ms
70,632 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
コンパイルメッセージ
Main.kt:5:10: warning: parameter 'args' is never used fun main(args:Array<String>) { ^
ソースコード
import kotlin.math.* import java.lang.StringBuilder import java.util.* fun main(args:Array<String>) { solve() } fun solve(){ val n = readLine()!!.toInt() var l = 1 var r = n var R = n / 2 var L = 0 while(r - l > 0){ val mid = (r + l) / 2 println("? $mid") val s = readLine()!!.toInt() val lenL = mid - l + 1 val lenR = r - mid val nextL = s - L val nextR = R - s if((nextL == 0 && nextR == lenR) || (nextL == lenL && nextR == 0)){ println("! $mid ${mid + 1}") break } else if(nextL == 0 || nextL == lenL){ l = mid + 1 L = s } else{ r = mid R = s } } }