結果

問題 No.175 simpleDNA
ユーザー fal_rndfal_rnd
提出日時 2018-04-18 08:45:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 1,000 ms
コード長 280 bytes
コンパイル時間 2,288 ms
コンパイル使用メモリ 74,484 KB
実行使用メモリ 41,452 KB
最終ジャッジ日時 2024-06-27 04:26:32
合計ジャッジ時間 4,143 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,228 KB
testcase_01 AC 126 ms
40,932 KB
testcase_02 AC 125 ms
41,452 KB
testcase_03 AC 114 ms
39,944 KB
testcase_04 AC 125 ms
41,208 KB
testcase_05 AC 113 ms
39,992 KB
testcase_06 AC 125 ms
41,256 KB
testcase_07 AC 121 ms
40,868 KB
testcase_08 AC 123 ms
41,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class Main {
    static Scanner s=new Scanner(System.in);
    static int gInt(){return Integer.parseInt(s.next());}
    public static void main(String[] args) throws Exception {
        long n=gInt(),l=gInt();
        System.out.println((1<<(n-3))*l);
    }
}
0