結果

問題 No.820 Power of Two
ユーザー iwa_choco_168iwa_choco_168
提出日時 2019-12-03 15:17:46
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 440 bytes
コンパイル時間 2,042 ms
コンパイル使用メモリ 74,364 KB
実行使用メモリ 108,144 KB
最終ジャッジ日時 2024-11-27 07:29:00
合計ジャッジ時間 6,865 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
60,676 KB
testcase_01 AC 114 ms
53,508 KB
testcase_02 TLE -
testcase_03 AC 121 ms
53,792 KB
testcase_04 AC 119 ms
53,956 KB
testcase_05 AC 108 ms
52,768 KB
testcase_06 AC 125 ms
54,024 KB
testcase_07 AC 120 ms
53,928 KB
testcase_08 AC 120 ms
53,788 KB
testcase_09 AC 122 ms
108,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = Integer.parseInt(sc.next());
        int k = Integer.parseInt(sc.next());
        int count = 0;
        long temp = (long)Math.pow(2, k);
        long i = 1;
        while(temp * i <= Math.pow(2, n)) {
            count++;
            i++;
        }
        System.out.println(count);
    }
}
0