結果

問題 No.638 Sum of "not power of 2"
ユーザー 💕💖💞💕💖💞
提出日時 2018-04-05 21:59:19
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 662 bytes
コンパイル時間 12,427 ms
コンパイル使用メモリ 428,516 KB
実行使用メモリ 56,952 KB
最終ジャッジ日時 2024-11-20 15:38:46
合計ジャッジ時間 18,718 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 331 ms
54,008 KB
testcase_04 AC 313 ms
54,184 KB
testcase_05 AC 312 ms
53,908 KB
testcase_06 AC 310 ms
54,348 KB
testcase_07 AC 309 ms
54,144 KB
testcase_08 AC 307 ms
54,344 KB
testcase_09 AC 313 ms
54,128 KB
testcase_10 AC 314 ms
53,900 KB
testcase_11 AC 314 ms
54,124 KB
testcase_12 AC 315 ms
54,132 KB
testcase_13 AC 313 ms
54,016 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^

ソースコード

diff #

import java.math.BigDecimal

fun main(args:Array<String>) {
  val n = readLine()!!.toBigDecimal()
  
  val m = ("1" + "0".repeat(18)).toBigDecimal()

  val bs = mutableSetOf<BigDecimal>()
  var tp = 1.toBigDecimal()
  stack@while(true) {
    if( tp > m ) break@stack
    //println(tp) 
    bs.add( tp )
    tp *= 2.toBigDecimal()
  }
  var x = 0.toBigDecimal()
  var control = false
  scan@while(true) {
    x++
    if( bs.contains(x) ) continue@scan
    val y = n - x
    if( !bs.contains(y) ) {
      control = true
      break@scan
    }
    if( x > n/2.toBigDecimal() ) break@scan
  }
  if( control )
    println("${x} ${n - x}")
  else 
    println("-1")
}
0