結果

問題 No.175 simpleDNA
ユーザー GrenacheGrenache
提出日時 2015-11-03 10:14:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 1,000 ms
コード長 389 bytes
コンパイル時間 4,006 ms
コンパイル使用メモリ 74,112 KB
実行使用メモリ 54,152 KB
最終ジャッジ日時 2024-09-13 11:55:52
合計ジャッジ時間 5,132 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
53,828 KB
testcase_01 AC 131 ms
54,036 KB
testcase_02 AC 133 ms
53,792 KB
testcase_03 AC 132 ms
53,992 KB
testcase_04 AC 130 ms
54,152 KB
testcase_05 AC 118 ms
52,804 KB
testcase_06 AC 134 ms
53,816 KB
testcase_07 AC 132 ms
54,116 KB
testcase_08 AC 135 ms
53,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder175 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int l = sc.nextInt();
        int n = sc.nextInt();

        int ret = 1;
        for (int i = 0; i < l - 3; i++) {
        	ret *= 2;
        }
        
        System.out.println(ret * n);
        
        sc.close();
    }
}
0