結果

問題 No.175 simpleDNA
ユーザー tentententen
提出日時 2020-11-04 12:46:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 1,000 ms
コード長 426 bytes
コンパイル時間 2,304 ms
コンパイル使用メモリ 73,832 KB
実行使用メモリ 41,440 KB
最終ジャッジ日時 2024-07-22 09:56:24
合計ジャッジ時間 4,369 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
41,264 KB
testcase_01 AC 135 ms
41,360 KB
testcase_02 AC 133 ms
41,340 KB
testcase_03 AC 136 ms
41,440 KB
testcase_04 AC 135 ms
40,896 KB
testcase_05 AC 135 ms
41,200 KB
testcase_06 AC 136 ms
41,384 KB
testcase_07 AC 135 ms
41,132 KB
testcase_08 AC 140 ms
41,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int length = sc.nextInt();
		int n = sc.nextInt();
		System.out.println(pow(2, length - 3) * n);
	}
	
	static long pow(long n, long p) {
	    if (p == 0) {
	        return 1;
	    } else if (p % 2 == 0) {
	        return pow(n * n, p / 2);
	    } else {
	        return n * pow(n, p - 1);
	    }
	}
}
0