結果

問題 No.820 Power of Two
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2019-04-26 21:43:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 290 bytes
コンパイル時間 1,896 ms
コンパイル使用メモリ 74,212 KB
実行使用メモリ 54,024 KB
最終ジャッジ日時 2024-11-25 02:54:09
合計ジャッジ時間 3,756 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
53,908 KB
testcase_01 AC 133 ms
53,688 KB
testcase_02 AC 121 ms
53,336 KB
testcase_03 AC 131 ms
53,824 KB
testcase_04 AC 117 ms
53,000 KB
testcase_05 AC 128 ms
53,916 KB
testcase_06 AC 112 ms
52,748 KB
testcase_07 AC 125 ms
54,024 KB
testcase_08 AC 128 ms
53,848 KB
testcase_09 AC 129 ms
53,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int k = sc.nextInt();
        int ans = (int) ( Math.pow(2,n) / Math.pow(2,k) );
        System.out.println(ans);
    }
}
0