結果

問題 No.175 simpleDNA
ユーザー ThhG_9l3ThhG_9l3
提出日時 2018-05-05 15:26:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 1,000 ms
コード長 454 bytes
コンパイル時間 3,377 ms
コンパイル使用メモリ 74,408 KB
実行使用メモリ 41,400 KB
最終ジャッジ日時 2024-06-28 01:56:56
合計ジャッジ時間 4,963 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
40,200 KB
testcase_01 AC 124 ms
41,400 KB
testcase_02 AC 124 ms
41,076 KB
testcase_03 AC 125 ms
41,164 KB
testcase_04 AC 125 ms
41,020 KB
testcase_05 AC 133 ms
41,164 KB
testcase_06 AC 128 ms
41,120 KB
testcase_07 AC 128 ms
41,172 KB
testcase_08 AC 125 ms
41,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukikoda;
import java.util.Scanner;
public class gobe {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		int L = sc.nextInt();
		int N = sc.nextInt();
		int sum = 1;
		String[] str = new String[N];
		
		for(int i=0; i<N; i++) {
			str[i] = sc.next();
		}
		
		if(L == 3) {
			System.out.println(N);
		}
		
		if(L > 3) {
			for(int i=1; i<=L-3; i++) {
				sum *= 2;
			}
			System.out.println(sum*N);
		}
	}
}
0