結果

問題 No.175 simpleDNA
ユーザー tsunabittsunabit
提出日時 2019-05-17 00:49:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 1,000 ms
コード長 374 bytes
コンパイル時間 3,694 ms
コンパイル使用メモリ 74,276 KB
実行使用メモリ 54,216 KB
最終ジャッジ日時 2024-09-17 05:44:01
合計ジャッジ時間 5,800 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
53,948 KB
testcase_01 AC 133 ms
54,216 KB
testcase_02 AC 133 ms
54,196 KB
testcase_03 AC 132 ms
53,952 KB
testcase_04 AC 132 ms
53,888 KB
testcase_05 AC 133 ms
54,004 KB
testcase_06 AC 130 ms
54,032 KB
testcase_07 AC 132 ms
54,172 KB
testcase_08 AC 130 ms
53,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Scanner;

public class No175 {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner s = new Scanner(System.in);
        int l = s.nextInt();
        int n = s.nextInt();
        System.out.println((int)Math.pow(2, l-3) * n);
    }
}
0