結果

問題 No.175 simpleDNA
ユーザー m4s4k1ch1m4s4k1ch1
提出日時 2015-05-28 23:57:54
言語 Java
(openjdk 23)
結果
AC  
実行時間 41 ms / 1,000 ms
コード長 422 bytes
コンパイル時間 2,396 ms
コンパイル使用メモリ 73,484 KB
実行使用メモリ 37,076 KB
最終ジャッジ日時 2024-07-06 10:13:34
合計ジャッジ時間 3,291 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
36,576 KB
testcase_01 AC 40 ms
36,876 KB
testcase_02 AC 40 ms
36,944 KB
testcase_03 AC 40 ms
37,076 KB
testcase_04 AC 40 ms
36,908 KB
testcase_05 AC 40 ms
36,880 KB
testcase_06 AC 40 ms
36,944 KB
testcase_07 AC 39 ms
36,924 KB
testcase_08 AC 39 ms
36,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String args[]) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String line = br.readLine();
		int l = Integer.parseInt(line);
		line = br.readLine();
		int n = Integer.parseInt(line);
		br.readLine();
		
		System.out.println((int)Math.pow(2, (l - 3)) * n);
	}
}
0