結果

問題 No.175 simpleDNA
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-05 22:47:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 1,000 ms
コード長 300 bytes
コンパイル時間 1,793 ms
コンパイル使用メモリ 74,064 KB
実行使用メモリ 41,648 KB
最終ジャッジ日時 2024-07-04 02:07:57
合計ジャッジ時間 3,388 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,336 KB
testcase_01 AC 104 ms
40,160 KB
testcase_02 AC 101 ms
40,340 KB
testcase_03 AC 124 ms
40,992 KB
testcase_04 AC 124 ms
41,648 KB
testcase_05 AC 116 ms
41,064 KB
testcase_06 AC 113 ms
40,984 KB
testcase_07 AC 115 ms
41,368 KB
testcase_08 AC 117 ms
41,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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