結果

問題 No.820 Power of Two
ユーザー kazu116kazu116
提出日時 2019-05-10 17:48:17
言語 Swift
(5.10.0)
結果
MLE  
実行時間 -
コード長 286 bytes
コンパイル時間 2,426 ms
コンパイル使用メモリ 184,660 KB
実行使用メモリ 822,124 KB
最終ジャッジ日時 2024-05-07 19:04:45
合計ジャッジ時間 5,465 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import Foundation

let line:[Int] = readLine()!.split(separator: " ").map{Int($0)!}

var a:Int = 1
var x:[Int] = []
while true {
    let y:Int = a * Int(pow(2.0, Double(line[1])))
    if y > Int(pow(2.0, Double(line[0]))) {
        break;
    }
    x += [y]
    a += 1
}

print(x.count)
0