結果

問題 No.175 simpleDNA
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-05-28 03:44:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 1,000 ms
コード長 307 bytes
コンパイル時間 3,596 ms
コンパイル使用メモリ 74,856 KB
実行使用メモリ 54,172 KB
最終ジャッジ日時 2024-06-30 07:35:02
合計ジャッジ時間 5,473 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
53,948 KB
testcase_01 AC 124 ms
54,044 KB
testcase_02 AC 127 ms
54,164 KB
testcase_03 AC 125 ms
54,172 KB
testcase_04 AC 126 ms
53,848 KB
testcase_05 AC 128 ms
53,912 KB
testcase_06 AC 135 ms
54,136 KB
testcase_07 AC 123 ms
53,956 KB
testcase_08 AC 126 ms
53,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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

		int L = sc.nextInt();
		int N = sc.nextInt();
		String[] S = new String[N];
		for(int i = 0; i < N; i++){
			S[i] = sc.next();
		}
		System.out.println((int)Math.pow(2, L-3)*N);
	}
}
0