結果

問題 No.175 simpleDNA
ユーザー mobius_bkstmobius_bkst
提出日時 2015-04-20 18:22:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 45 ms / 1,000 ms
コード長 566 bytes
コンパイル時間 3,496 ms
コンパイル使用メモリ 78,984 KB
実行使用メモリ 37,120 KB
最終ジャッジ日時 2024-07-04 18:29:25
合計ジャッジ時間 3,763 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
36,920 KB
testcase_01 AC 45 ms
36,888 KB
testcase_02 AC 45 ms
36,908 KB
testcase_03 AC 45 ms
36,792 KB
testcase_04 AC 44 ms
36,884 KB
testcase_05 AC 44 ms
37,120 KB
testcase_06 AC 44 ms
36,704 KB
testcase_07 AC 44 ms
36,552 KB
testcase_08 AC 45 ms
36,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class No175 {

    public static void main(String[] args) {
        try {
            BufferedReader br = new BufferedReader(new InputStreamReader(
                    System.in));
            int L = Integer.parseInt(br.readLine());
            int N = Integer.parseInt(br.readLine());

            long ans = (long) (Math.pow(2, L - 3) * N);

            System.out.println(ans);

        } catch (Exception e) {
            System.err.println("Error:" + e.getMessage());
        }
    }

}
0