結果

問題 No.175 simpleDNA
ユーザー atkrymatkrym
提出日時 2016-10-24 00:17:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 1,000 ms
コード長 279 bytes
コンパイル時間 3,477 ms
コンパイル使用メモリ 73,896 KB
実行使用メモリ 41,244 KB
最終ジャッジ日時 2024-11-24 02:09:08
合計ジャッジ時間 3,803 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
40,288 KB
testcase_01 AC 103 ms
39,840 KB
testcase_02 AC 121 ms
41,216 KB
testcase_03 AC 123 ms
41,240 KB
testcase_04 AC 113 ms
40,136 KB
testcase_05 AC 124 ms
41,196 KB
testcase_06 AC 123 ms
41,020 KB
testcase_07 AC 124 ms
41,244 KB
testcase_08 AC 124 ms
41,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    private static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws Exception {
        int l = sc.nextInt();
        int n = sc.nextInt();
        System.out.println((int)Math.pow(2,l-3)*n);
    }
}
0