結果

問題 No.820 Power of Two
ユーザー htensaihtensai
提出日時 2019-11-11 17:45:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 320 bytes
コンパイル時間 2,121 ms
コンパイル使用メモリ 74,484 KB
実行使用メモリ 41,252 KB
最終ジャッジ日時 2024-09-15 05:17:47
合計ジャッジ時間 3,939 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,008 KB
testcase_01 AC 126 ms
41,252 KB
testcase_02 AC 116 ms
40,092 KB
testcase_03 AC 113 ms
39,916 KB
testcase_04 AC 126 ms
41,040 KB
testcase_05 AC 128 ms
41,152 KB
testcase_06 AC 128 ms
40,912 KB
testcase_07 AC 129 ms
41,160 KB
testcase_08 AC 115 ms
39,896 KB
testcase_09 AC 128 ms
41,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static TreeSet<Integer> primes;
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int k = sc.nextInt();
		double max = Math.pow(2, n);
		double unit = Math.pow(2, k);
	    System.out.println((long)(max / unit));
	}
}
0