結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,212 KB
testcase_01 AC 122 ms
53,920 KB
testcase_02 AC 127 ms
54,376 KB
testcase_03 AC 132 ms
53,984 KB
testcase_04 AC 122 ms
54,280 KB
testcase_05 AC 127 ms
54,144 KB
testcase_06 AC 114 ms
52,900 KB
testcase_07 AC 110 ms
52,968 KB
testcase_08 AC 126 ms
53,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main(String[] args){
		// TODO 自動生成されたメソッド・スタブ
		Scanner sc = new Scanner(System.in);
//		int[][][] dp= new int[182][5][(int) Math.pow(2, 15)];
//		dp[0][0][0]=1;
//		for(int i=1;i<=181;i++){
//			for(int j=0;j<5;j++){
//				for(int k=0;k<Math.pow(2, 15);k++){
//					
//				}
//			}
//		}
//		while(true){
//			int n = sc.nextInt();
//			if(n==0) break;
//			
//		}
		int n = sc.nextInt();
		int a = sc.nextInt();
		String b = sc.next();
		System.out.println((int)Math.pow(2, n-b.length())*a);
		return ;
	}
}
0