結果

問題 No.175 simpleDNA
ユーザー samplelpmassamplelpmas
提出日時 2016-11-14 03:09:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 1,000 ms
コード長 269 bytes
コンパイル時間 1,973 ms
コンパイル使用メモリ 74,172 KB
実行使用メモリ 52,408 KB
最終ジャッジ日時 2024-11-25 22:09:40
合計ジャッジ時間 3,770 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
52,408 KB
testcase_01 AC 129 ms
49,860 KB
testcase_02 AC 132 ms
50,012 KB
testcase_03 AC 132 ms
50,300 KB
testcase_04 AC 121 ms
49,936 KB
testcase_05 AC 120 ms
49,804 KB
testcase_06 AC 130 ms
50,072 KB
testcase_07 AC 128 ms
49,916 KB
testcase_08 AC 125 ms
50,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        int L = sc.nextInt();
        long N = sc.nextLong();
        System.out.println((int) Math.pow(2, L - 3) * N);

    }

}
0