結果

問題 No.639 An Ordinary Sequence
ユーザー tetsutetsu
提出日時 2018-01-27 02:55:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 151 ms / 1,000 ms
コード長 615 bytes
コンパイル時間 3,468 ms
コンパイル使用メモリ 74,632 KB
実行使用メモリ 49,796 KB
最終ジャッジ日時 2024-06-10 12:50:36
合計ジャッジ時間 6,346 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 151 ms
49,456 KB
testcase_01 AC 150 ms
49,796 KB
testcase_02 AC 134 ms
49,456 KB
testcase_03 AC 135 ms
49,180 KB
testcase_04 AC 132 ms
49,132 KB
testcase_05 AC 134 ms
49,636 KB
testcase_06 AC 136 ms
49,744 KB
testcase_07 AC 133 ms
49,764 KB
testcase_08 AC 134 ms
49,520 KB
testcase_09 AC 131 ms
49,220 KB
testcase_10 AC 131 ms
49,492 KB
testcase_11 AC 134 ms
49,408 KB
testcase_12 AC 135 ms
49,004 KB
testcase_13 AC 138 ms
49,416 KB
testcase_14 AC 140 ms
49,312 KB
testcase_15 AC 145 ms
49,140 KB
testcase_16 AC 147 ms
49,596 KB
testcase_17 AC 130 ms
49,140 KB
testcase_18 AC 147 ms
49,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;
import java.util.*;

public class P639 {
	static int memory = 1000000;
	static long[] memo = new long[memory];

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		Scanner sc = new Scanner(System.in);
		long n = sc.nextLong();
		Arrays.fill(memo, -1);
		memo[0] = 1;
		for(int i=1; i<memory; i++) {
			memo[i] = memo[i/3]+memo[i/5]; 
		}
		System.out.println(a(n));
	}
	
	static public long a(long n) {
		if(n==0) {
			return 1;
		}
		if(n<memory&&memo[(int)n]!=-1) {
			return memo[(int)n];
		}
		if(n/3==n/5) {
			return 2*a(n/3);
		}
		return a(n/3)+a(n/5);
	}

}
0