結果

問題 No.598 オーバーフローファンタジー
ユーザー 💕💖💞💕💖💞
提出日時 2018-03-08 10:02:49
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 678 bytes
コンパイル時間 12,551 ms
コンパイル使用メモリ 434,128 KB
実行使用メモリ 147,548 KB
最終ジャッジ日時 2024-11-20 14:24:22
合計ジャッジ時間 37,527 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 340 ms
98,376 KB
testcase_02 AC 554 ms
95,124 KB
testcase_03 WA -
testcase_04 AC 320 ms
63,744 KB
testcase_05 WA -
testcase_06 AC 335 ms
67,140 KB
testcase_07 AC 335 ms
147,216 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 334 ms
67,244 KB
testcase_11 AC 329 ms
147,332 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 764 ms
91,656 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 338 ms
60,456 KB
testcase_20 WA -
testcase_21 AC 335 ms
60,492 KB
testcase_22 AC 338 ms
60,420 KB
testcase_23 TLE -
testcase_24 AC 327 ms
60,420 KB
testcase_25 AC 334 ms
60,340 KB
testcase_26 AC 334 ms
60,332 KB
testcase_27 AC 335 ms
60,312 KB
testcase_28 AC 337 ms
60,432 KB
testcase_29 AC 337 ms
60,384 KB
testcase_30 AC 341 ms
147,180 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^

ソースコード

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) 
  val bb = java.lang.Integer.toBinaryString(b)
  
  var sum = xb.toInt(2)
  var result = 0
  for( i in (1..normal+1))  {
    sum +=  bb.toInt(2)
    val sumstr = java.lang.Integer.toBinaryString(sum).padStart(n, '0')
  
    //println(sumstr)
    if( sumstr[0] == '1' ) {
      result = i
      break
    }
  }

  val output = listOf(normal, result).min()
  println(output)
}
0