結果

問題 No.175 simpleDNA
ユーザー fukuseifukusei
提出日時 2018-05-05 15:34:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 1,000 ms
コード長 431 bytes
コンパイル時間 2,279 ms
コンパイル使用メモリ 74,652 KB
実行使用メモリ 41,496 KB
最終ジャッジ日時 2024-06-28 01:57:30
合計ジャッジ時間 3,851 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,200 KB
testcase_01 AC 126 ms
41,496 KB
testcase_02 AC 129 ms
41,424 KB
testcase_03 AC 131 ms
41,300 KB
testcase_04 AC 128 ms
41,128 KB
testcase_05 AC 127 ms
41,052 KB
testcase_06 AC 134 ms
41,196 KB
testcase_07 AC 131 ms
41,084 KB
testcase_08 AC 138 ms
41,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class paiza {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        
        int length = sc.nextInt();
        int num = sc.nextInt();
        String codon[] = new String[num];
        
        for (int i = 0; i < num; i++) {
        	codon[i] = sc.next();
        }
        System.out.println( (int)Math.pow(2, (length - codon[0].length())) * num );
    }
}
0