結果

問題 No.638 Sum of "not power of 2"
ユーザー 💕💖💞💕💖💞
提出日時 2018-04-05 22:02:20
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 311 ms / 1,000 ms
コード長 685 bytes
コンパイル時間 11,160 ms
コンパイル使用メモリ 434,464 KB
実行使用メモリ 51,296 KB
最終ジャッジ日時 2024-11-20 15:39:12
合計ジャッジ時間 16,391 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 305 ms
50,964 KB
testcase_01 AC 304 ms
51,256 KB
testcase_02 AC 302 ms
51,196 KB
testcase_03 AC 302 ms
51,208 KB
testcase_04 AC 307 ms
50,876 KB
testcase_05 AC 311 ms
51,296 KB
testcase_06 AC 303 ms
50,964 KB
testcase_07 AC 300 ms
51,268 KB
testcase_08 AC 303 ms
51,104 KB
testcase_09 AC 309 ms
51,064 KB
testcase_10 AC 309 ms
50,852 KB
testcase_11 AC 308 ms
50,952 KB
testcase_12 AC 305 ms
50,844 KB
testcase_13 AC 302 ms
50,848 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) && y > 0.toBigDecimal() ) {
      control = true
      break@scan
    }
    if( x > n/2.toBigDecimal() ) break@scan
  }
  if( control )
    println("${x} ${n - x}")
  else 
    println("-1")
}
0