結果
問題 | No.246 質問と回答 |
ユーザー | javy |
提出日時 | 2015-12-07 05:07:08 |
言語 | Kotlin (1.9.23) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,559 bytes |
コンパイル時間 | 14,271 ms |
コンパイル使用メモリ | 432,904 KB |
実行使用メモリ | 71,304 KB |
平均クエリ数 | 30.00 |
最終ジャッジ日時 | 2024-07-16 08:04:02 |
合計ジャッジ時間 | 24,448 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 322 ms
70,508 KB |
testcase_03 | AC | 315 ms
71,000 KB |
testcase_04 | AC | 310 ms
70,520 KB |
testcase_05 | WA | - |
testcase_06 | AC | 311 ms
70,700 KB |
testcase_07 | AC | 311 ms
70,836 KB |
testcase_08 | AC | 323 ms
70,864 KB |
testcase_09 | WA | - |
testcase_10 | AC | 311 ms
70,828 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 316 ms
70,372 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 316 ms
70,472 KB |
testcase_21 | AC | 312 ms
70,536 KB |
testcase_22 | AC | 309 ms
70,784 KB |
testcase_23 | WA | - |
testcase_24 | AC | 313 ms
70,856 KB |
testcase_25 | AC | 311 ms
70,556 KB |
testcase_26 | WA | - |
testcase_27 | AC | 310 ms
70,616 KB |
testcase_28 | WA | - |
testcase_29 | AC | 315 ms
70,212 KB |
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used fun main(args: Array<String>) { ^ Main.kt:60:13: warning: the value 'minV + baf' assigned to 'var maxV: Long defined in Yukicoder.main' is never used maxV = minV + baf ^
ソースコード
package Yukicoder fun main(args: Array<String>) { fun readLineLongArray(): List<Long> { val str = readLine() as String val arrStr = str.split(" ") val ret = arrStr.map { it.toLong() } return ret } fun readLineLong(): Long { val str = readLine() as String return str.toLong() } fun readLineInt(): Int { val str = readLine() as String return str.toInt() } fun readLineIntArray() : List<Int> { val str = readLine() as String val arrStr = str.split(" ") val ret = arrStr.map { it.toInt() } return ret } fun readLineDoubleArray(): List<Double> { val str = readLine() as String val arrStr = str.split(" ") val ret = arrStr.map { it.toDouble() } return ret } fun readLineDouble() : Double { val str = readLine() as String return str.toDouble() } fun readLineString() : String { return readLine() as String } // fun readLineStringArray(): List<String> { // val str = readLine() as String // val arrStr = str.split(" ") // return arrStr // } var maxV : Long = 1000000000 // var maxV : Long = 10 var minV : Long = 1 var baf = (maxV + minV) / 2 while (baf != 0.toLong()) { println("? " + (minV + baf)) val outou = readLineInt() if (outou == 1) { minV = minV + baf } else { maxV = minV + baf } baf /= 2 } println("! " + minV) }