結果
問題 | No.820 Power of Two |
ユーザー | 37zigen |
提出日時 | 2019-04-26 21:24:15 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 136 ms / 2,000 ms |
コード長 | 402 bytes |
コンパイル時間 | 2,127 ms |
コンパイル使用メモリ | 74,544 KB |
実行使用メモリ | 54,160 KB |
最終ジャッジ日時 | 2024-11-25 01:50:30 |
合計ジャッジ時間 | 4,095 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 10 |
ソースコード
import java.util.*; import java.io.*; public class Main { public static void main(String[] args) throws Exception { new Main().run(); } void run() throws Exception { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int k = sc.nextInt(); System.out.println(n >= k ? 1L << (n - k) : 0); } void tr(Object... objects) { System.out.println(Arrays.deepToString(objects)); } }