結果
問題 | No.820 Power of Two |
ユーザー | d07ki3bq1uz |
提出日時 | 2019-12-08 22:56:14 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 432 bytes |
コンパイル時間 | 1,734 ms |
コンパイル使用メモリ | 74,480 KB |
実行使用メモリ | 41,344 KB |
最終ジャッジ日時 | 2024-06-10 20:40:15 |
合計ジャッジ時間 | 3,393 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 111 ms
41,168 KB |
testcase_04 | AC | 110 ms
39,868 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
import java.util.*; class Main{ public static void main (String[] args) { Scanner s = new Scanner(System.in); int a =s.nextInt(); int b =s.nextInt(); int n = (int)Math.pow(2,a); int m = (int)Math.pow(2,b); int t = m/n; if(n>m){ System.out.println(0); }else{ System.out.println(t); } } }