結果

問題 No.598 オーバーフローファンタジー
ユーザー 💕💖💞💕💖💞
提出日時 2018-03-08 10:35:16
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 1,126 bytes
コンパイル時間 12,579 ms
コンパイル使用メモリ 433,988 KB
実行使用メモリ 147,096 KB
最終ジャッジ日時 2024-11-20 14:29:09
合計ジャッジ時間 24,978 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 308 ms
63,612 KB
testcase_01 AC 304 ms
98,072 KB
testcase_02 AC 306 ms
67,192 KB
testcase_03 AC 313 ms
60,516 KB
testcase_04 AC 312 ms
60,348 KB
testcase_05 AC 308 ms
60,472 KB
testcase_06 WA -
testcase_07 AC 323 ms
60,148 KB
testcase_08 AC 317 ms
60,244 KB
testcase_09 AC 324 ms
60,324 KB
testcase_10 AC 315 ms
60,492 KB
testcase_11 AC 318 ms
60,476 KB
testcase_12 AC 321 ms
60,348 KB
testcase_13 AC 321 ms
60,360 KB
testcase_14 AC 321 ms
60,340 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 320 ms
60,484 KB
testcase_18 AC 314 ms
60,240 KB
testcase_19 WA -
testcase_20 AC 306 ms
60,264 KB
testcase_21 WA -
testcase_22 AC 315 ms
60,524 KB
testcase_23 TLE -
testcase_24 AC 316 ms
60,384 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 319 ms
60,344 KB
testcase_28 AC 316 ms
60,332 KB
testcase_29 AC 309 ms
60,208 KB
testcase_30 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^
Main.kt:24:14: warning: variable 'cure' initializer is redundant
  var cure = 0
             ^
Main.kt:31:13: warning: name shadowed: sum
        val sum = xb + bb*scan
            ^
Main.kt:32:13: warning: name shadowed: sumstr
        val sumstr = java.lang.Integer.toBinaryString(sum).padStart(n, '0')
            ^

ソースコード

diff #

fun main(args:Array<String>) {
  val n = readLine()!!.toInt()

  val x = readLine()!!.toInt()

  val a = readLine()!!.toInt()

  val b = readLine()!!.toInt()

  // 通常攻撃での減産
  val normal = Math.ceil(x.toDouble() / a).toInt()

  
  // 補数
  val xb = java.lang.Integer.toBinaryString(x).toInt(2) 
  val bb = java.lang.Integer.toBinaryString(b).toInt(2)
  

  //val searchRange = (1..normal+1).toList()
  
  var size = normal
  var mid = size/2

  var cure = 0
  master@while(true) {
    val sum = xb + bb*mid
    val sumstr = java.lang.Integer.toBinaryString(sum).padStart(n, '0')
    if( sumstr[0] == '1' ) {
      // start under search
      for( scan in (mid downTo 0) ) {
        val sum = xb + bb*scan
        val sumstr = java.lang.Integer.toBinaryString(sum).padStart(n, '0')
        cure = scan
        if( sumstr[0] == '1' )
          break@master
      }
    } else { 
      mid = (mid + size+1)/2
    }
    if(mid == size) {
      // 探索失敗
      cure = normal + 1
      break@master
    }
  }
  //println(normal)
  //println(cure)
  val output = listOf(normal, cure).min()
  println(output)
}
0