結果

問題 No.820 Power of Two
ユーザー バカらっくバカらっく
提出日時 2022-02-04 10:31:49
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 305 ms / 2,000 ms
コード長 145 bytes
コンパイル時間 9,443 ms
コンパイル使用メモリ 432,152 KB
実行使用メモリ 51,804 KB
最終ジャッジ日時 2024-06-11 10:07:08
合計ジャッジ時間 13,415 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 305 ms
51,756 KB
testcase_01 AC 275 ms
51,804 KB
testcase_02 AC 264 ms
51,612 KB
testcase_03 AC 267 ms
51,768 KB
testcase_04 AC 261 ms
51,668 KB
testcase_05 AC 268 ms
51,628 KB
testcase_06 AC 265 ms
51,624 KB
testcase_07 AC 269 ms
51,628 KB
testcase_08 AC 264 ms
51,732 KB
testcase_09 AC 265 ms
51,704 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    val (n,k) = readLine()!!.split(" ").map { it.toInt() }
    val ans = (1 shl n) / (1 shl k)
    println(ans)
}
0