結果

問題 No.175 simpleDNA
ユーザー dazydazy
提出日時 2016-09-28 02:47:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 1,000 ms
コード長 430 bytes
コンパイル時間 4,513 ms
コンパイル使用メモリ 74,180 KB
実行使用メモリ 54,232 KB
最終ジャッジ日時 2024-11-21 07:48:59
合計ジャッジ時間 5,327 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
52,736 KB
testcase_01 AC 117 ms
52,964 KB
testcase_02 AC 129 ms
54,116 KB
testcase_03 AC 128 ms
54,152 KB
testcase_04 AC 123 ms
54,056 KB
testcase_05 AC 118 ms
53,064 KB
testcase_06 AC 127 ms
54,232 KB
testcase_07 AC 120 ms
52,708 KB
testcase_08 AC 127 ms
54,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Run {
    final static double s = Math.sin(Math.PI/4) * 2;
    public static void main (String arg[]) {
        Scanner scan = new Scanner(System.in);
        int L = scan.nextInt();
        int N = scan.nextInt();
        String S;
        for (int i = 0; i < N; i++) {
            S = scan.next();
        }
        int ans = (int)Math.pow(2, L-3) * N;
        System.out.println(ans);
    }
}
0