結果

問題 No.175 simpleDNA
ユーザー yagi2yagi2
提出日時 2017-04-24 12:38:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 1,000 ms
コード長 296 bytes
コンパイル時間 2,061 ms
コンパイル使用メモリ 74,424 KB
実行使用メモリ 54,088 KB
最終ジャッジ日時 2024-09-13 11:48:58
合計ジャッジ時間 3,993 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
53,508 KB
testcase_01 AC 127 ms
54,040 KB
testcase_02 AC 126 ms
53,852 KB
testcase_03 AC 127 ms
53,964 KB
testcase_04 AC 128 ms
53,876 KB
testcase_05 AC 128 ms
54,088 KB
testcase_06 AC 126 ms
54,040 KB
testcase_07 AC 127 ms
53,788 KB
testcase_08 AC 127 ms
53,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int L = Integer.parseInt(sc.next());
        int N = Integer.parseInt(sc.next());

        System.out.println((int)Math.pow(2, (L - 3)) * N);
    }
}
0