結果

問題 No.175 simpleDNA
ユーザー kenkooookenkoooo
提出日時 2015-04-02 23:29:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 1,000 ms
コード長 258 bytes
コンパイル時間 2,129 ms
コンパイル使用メモリ 73,980 KB
実行使用メモリ 54,144 KB
最終ジャッジ日時 2024-07-03 23:46:28
合計ジャッジ時間 3,696 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
53,988 KB
testcase_01 AC 123 ms
54,120 KB
testcase_02 AC 122 ms
53,852 KB
testcase_03 AC 125 ms
54,084 KB
testcase_04 AC 121 ms
54,136 KB
testcase_05 AC 113 ms
52,832 KB
testcase_06 AC 128 ms
53,992 KB
testcase_07 AC 125 ms
53,936 KB
testcase_08 AC 122 ms
54,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

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

		int N = sc.nextInt() - 3;
		long S = sc.nextLong();
		long ans = (long) (Math.pow(2, N) * S);
		System.out.println(ans);

	}
}
0