結果

問題 No.820 Power of Two
ユーザー GodNegotoGodNegoto
提出日時 2019-11-08 14:03:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 355 bytes
コンパイル時間 3,418 ms
コンパイル使用メモリ 74,468 KB
実行使用メモリ 41,588 KB
最終ジャッジ日時 2024-09-15 00:50:45
合計ジャッジ時間 5,359 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
40,960 KB
testcase_01 AC 127 ms
41,112 KB
testcase_02 AC 130 ms
41,196 KB
testcase_03 AC 130 ms
41,308 KB
testcase_04 AC 130 ms
41,480 KB
testcase_05 AC 129 ms
41,316 KB
testcase_06 AC 127 ms
41,204 KB
testcase_07 AC 129 ms
41,124 KB
testcase_08 AC 127 ms
41,588 KB
testcase_09 AC 129 ms
40,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package algo;

import java.util.Scanner;

public class sample7 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int K = sc.nextInt();
		
		if(Math.pow(2, N) >= (Math.pow(2, K))) {
			System.out.println((int)((Math.pow(2, N)) / (Math.pow(2, K))));
		}
		else {
			System.out.println(0);
		}
	}
}
0