結果

問題 No.820 Power of Two
ユーザー MaboyMaboy
提出日時 2021-06-18 15:15:25
言語 Swift
(5.10.0)
結果
AC  
実行時間 12 ms / 2,000 ms
コード長 126 bytes
コンパイル時間 9,022 ms
コンパイル使用メモリ 174,132 KB
実行使用メモリ 16,256 KB
最終ジャッジ日時 2024-06-22 08:28:13
合計ジャッジ時間 9,934 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
15,872 KB
testcase_01 AC 11 ms
15,616 KB
testcase_02 AC 11 ms
16,256 KB
testcase_03 AC 11 ms
15,616 KB
testcase_04 AC 11 ms
15,744 KB
testcase_05 AC 11 ms
15,616 KB
testcase_06 AC 12 ms
15,616 KB
testcase_07 AC 11 ms
15,616 KB
testcase_08 AC 11 ms
15,616 KB
testcase_09 AC 11 ms
15,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import Foundation
let n = readLine()!.split(separator: " ").map{Double($0)!}
var x = Int(pow(2, n[0]) / pow(2, n[1]))
print(x)
0