結果

問題 No.220 世界のなんとか2
ユーザー kou6839kou6839
提出日時 2015-08-11 13:07:56
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 364 bytes
コンパイル時間 1,702 ms
コンパイル使用メモリ 74,260 KB
実行使用メモリ 60,428 KB
最終ジャッジ日時 2024-07-18 06:40:29
合計ジャッジ時間 8,778 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
46,880 KB
testcase_01 AC 99 ms
41,444 KB
testcase_02 AC 107 ms
41,324 KB
testcase_03 AC 106 ms
41,384 KB
testcase_04 AC 99 ms
41,408 KB
testcase_05 AC 108 ms
41,460 KB
testcase_06 AC 112 ms
41,468 KB
testcase_07 AC 111 ms
41,340 KB
testcase_08 AC 101 ms
41,424 KB
testcase_09 AC 104 ms
41,476 KB
testcase_10 AC 113 ms
41,592 KB
testcase_11 AC 113 ms
40,476 KB
testcase_12 AC 119 ms
41,548 KB
testcase_13 AC 130 ms
41,236 KB
testcase_14 AC 163 ms
41,500 KB
testcase_15 AC 277 ms
41,464 KB
testcase_16 AC 565 ms
41,232 KB
testcase_17 TLE -
testcase_18 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {
	static long[] dp=new long[20];
	static long cul(long p){
		if(p==1){
			return 3;
		}
		return dp[(int)p]=cul(p-1)*3+(cul(p-1)+1)*3+(cul(p-1)+2)*3+((long)Math.pow(10, p-1)-1);
	}
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long P = sc.nextLong();
		System.out.println(cul(P));
	}
}

0