結果

問題 No.820 Power of Two
ユーザー 💕💖💞💕💖💞
提出日時 2019-05-06 12:43:13
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 294 ms / 2,000 ms
コード長 203 bytes
コンパイル時間 11,551 ms
コンパイル使用メモリ 434,720 KB
実行使用メモリ 51,748 KB
最終ジャッジ日時 2024-11-20 18:09:25
合計ジャッジ時間 13,627 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 283 ms
51,628 KB
testcase_01 AC 291 ms
51,640 KB
testcase_02 AC 294 ms
51,748 KB
testcase_03 AC 286 ms
51,536 KB
testcase_04 AC 283 ms
51,700 KB
testcase_05 AC 288 ms
51,684 KB
testcase_06 AC 288 ms
51,648 KB
testcase_07 AC 282 ms
51,644 KB
testcase_08 AC 281 ms
51,640 KB
testcase_09 AC 282 ms
51,676 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:2:10: warning: parameter 'args' is never used
fun main(args:Array<String>){
         ^

ソースコード

diff #

import java.lang.Math
fun main(args:Array<String>){
    val ( a, b) = readLine()!!.split(" ").map { it.toDouble() }
    // println("$a, $b")
    println( (Math.pow(2.0, a)/Math.pow(2.0, b)).toLong() )
}
0