結果

問題 No.639 An Ordinary Sequence
ユーザー GrenacheGrenache
提出日時 2018-02-12 12:37:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 1,000 ms
コード長 769 bytes
コンパイル時間 3,557 ms
コンパイル使用メモリ 76,880 KB
実行使用メモリ 41,432 KB
最終ジャッジ日時 2024-06-10 12:53:02
合計ジャッジ時間 5,816 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,224 KB
testcase_01 AC 114 ms
41,176 KB
testcase_02 AC 98 ms
39,964 KB
testcase_03 AC 105 ms
40,720 KB
testcase_04 AC 100 ms
39,864 KB
testcase_05 AC 111 ms
41,084 KB
testcase_06 AC 100 ms
40,148 KB
testcase_07 AC 111 ms
41,324 KB
testcase_08 AC 102 ms
40,012 KB
testcase_09 AC 102 ms
40,432 KB
testcase_10 AC 107 ms
41,244 KB
testcase_11 AC 96 ms
39,836 KB
testcase_12 AC 104 ms
40,152 KB
testcase_13 AC 104 ms
40,312 KB
testcase_14 AC 104 ms
40,108 KB
testcase_15 AC 111 ms
41,432 KB
testcase_16 AC 103 ms
40,308 KB
testcase_17 AC 102 ms
39,960 KB
testcase_18 AC 105 ms
40,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder639 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		long n = sc.nextLong();

		hm = new HashMap<>();
		hm.put(0L, 1L);

		pr.println(rec(n));
	}

	private static long rec(long n) {
		if (hm.containsKey(n)) {
			return hm.get(n);
		}

		long ret = rec(n / 3) + rec(n / 5);

		hm.put(n, ret);
		return ret;
	}

	private static Map<Long, Long> hm;

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0