結果

問題 No.820 Power of Two
ユーザー planetWorldYplanetWorldY
提出日時 2020-03-01 18:07:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 379 bytes
コンパイル時間 2,982 ms
コンパイル使用メモリ 73,960 KB
実行使用メモリ 54,392 KB
最終ジャッジ日時 2024-10-13 20:46:02
合計ジャッジ時間 5,249 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
54,008 KB
testcase_01 AC 123 ms
54,392 KB
testcase_02 AC 118 ms
53,792 KB
testcase_03 AC 117 ms
53,960 KB
testcase_04 AC 129 ms
53,880 KB
testcase_05 AC 119 ms
54,312 KB
testcase_06 AC 124 ms
53,924 KB
testcase_07 AC 115 ms
53,660 KB
testcase_08 AC 117 ms
53,928 KB
testcase_09 AC 118 ms
53,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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