結果

問題 No.175 simpleDNA
ユーザー spacenautspacenaut
提出日時 2016-05-22 16:11:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 1,000 ms
コード長 300 bytes
コンパイル時間 2,013 ms
コンパイル使用メモリ 73,996 KB
実行使用メモリ 41,408 KB
最終ジャッジ日時 2024-10-06 20:33:24
合計ジャッジ時間 3,837 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
40,964 KB
testcase_01 AC 130 ms
41,296 KB
testcase_02 AC 132 ms
41,408 KB
testcase_03 AC 130 ms
41,212 KB
testcase_04 AC 132 ms
41,076 KB
testcase_05 AC 131 ms
40,880 KB
testcase_06 AC 132 ms
41,312 KB
testcase_07 AC 131 ms
41,384 KB
testcase_08 AC 118 ms
39,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class No0175{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int l = sc.nextInt() - 3;
		int n = sc.nextInt();
		int sum = (int)Math.pow(2, l) * n;
		String s;
		for(int i = 0 ; i < n; i++){
			s = sc.next();
		}
		System.out.println(sum);
	}
}
0