結果

問題 No.175 simpleDNA
ユーザー koukonkokoukonko
提出日時 2015-12-13 15:47:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 53 ms / 1,000 ms
コード長 444 bytes
コンパイル時間 2,052 ms
コンパイル使用メモリ 73,728 KB
実行使用メモリ 37,168 KB
最終ジャッジ日時 2024-09-15 11:42:53
合計ジャッジ時間 3,113 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,912 KB
testcase_01 AC 53 ms
36,684 KB
testcase_02 AC 53 ms
37,168 KB
testcase_03 AC 53 ms
37,004 KB
testcase_04 AC 52 ms
37,164 KB
testcase_05 AC 53 ms
36,888 KB
testcase_06 AC 53 ms
36,904 KB
testcase_07 AC 52 ms
37,000 KB
testcase_08 AC 51 ms
36,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main(String[] args) {
		BufferedReader read = new BufferedReader(new InputStreamReader(System.in));
		try {
			int L = Integer.parseInt(read.readLine());
			int N = Integer.parseInt(read.readLine());
			read.readLine();

			System.out.println((long) (Math.pow(2, (L - 3)) * N));
		} catch (Exception e) {
			e.printStackTrace();
		}
	}
}
0