結果

問題 No.175 simpleDNA
ユーザー shinwisteriashinwisteria
提出日時 2019-03-17 16:10:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 1,000 ms
コード長 240 bytes
コンパイル時間 3,186 ms
コンパイル使用メモリ 75,208 KB
実行使用メモリ 54,200 KB
最終ジャッジ日時 2024-07-07 02:54:01
合計ジャッジ時間 4,968 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
53,100 KB
testcase_01 AC 125 ms
54,192 KB
testcase_02 AC 122 ms
54,072 KB
testcase_03 AC 111 ms
53,088 KB
testcase_04 AC 123 ms
53,908 KB
testcase_05 AC 124 ms
54,200 KB
testcase_06 AC 122 ms
54,092 KB
testcase_07 AC 126 ms
53,916 KB
testcase_08 AC 113 ms
53,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No175 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int l = s.nextInt() , n = s.nextInt();
		s.close();

		System.out.println((int)Math.pow(2, l-3) * n);

	}

}
0