結果

問題 No.820 Power of Two
ユーザー shinwisteriashinwisteria
提出日時 2019-08-30 09:48:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 351 bytes
コンパイル時間 3,273 ms
コンパイル使用メモリ 74,472 KB
実行使用メモリ 41,724 KB
最終ジャッジ日時 2024-11-19 11:56:15
合計ジャッジ時間 5,403 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,724 KB
testcase_01 AC 118 ms
41,196 KB
testcase_02 AC 105 ms
41,112 KB
testcase_03 AC 118 ms
41,340 KB
testcase_04 AC 100 ms
40,224 KB
testcase_05 AC 108 ms
41,212 KB
testcase_06 AC 115 ms
41,556 KB
testcase_07 AC 114 ms
41,216 KB
testcase_08 AC 103 ms
39,860 KB
testcase_09 AC 113 ms
41,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package con_level_1;
import java.util.Scanner;

public class Con820 {
	public static void main(String[] args){
		Scanner s = new Scanner(System.in);
		int N = s.nextInt() , K = s.nextInt();
		s.close();

		if(N >= K){
			double n = Math.pow(2, N) , k = Math.pow(2, K);
			System.out.println((int)(n / k));

		}else{
			System.out.println(0);
		}
	}
}
0