結果

問題 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,931 ms
コンパイル使用メモリ 75,512 KB
実行使用メモリ 41,408 KB
最終ジャッジ日時 2024-05-03 22:07:09
合計ジャッジ時間 3,778 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,408 KB
testcase_01 AC 114 ms
39,880 KB
testcase_02 AC 115 ms
39,756 KB
testcase_03 AC 133 ms
41,280 KB
testcase_04 AC 115 ms
39,752 KB
testcase_05 AC 114 ms
39,856 KB
testcase_06 AC 114 ms
40,124 KB
testcase_07 AC 127 ms
40,916 KB
testcase_08 AC 113 ms
39,824 KB
testcase_09 AC 113 ms
40,064 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