結果

問題 No.639 An Ordinary Sequence
ユーザー htensaihtensai
提出日時 2019-11-14 08:46:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 1,000 ms
コード長 481 bytes
コンパイル時間 2,264 ms
コンパイル使用メモリ 75,036 KB
実行使用メモリ 54,328 KB
最終ジャッジ日時 2024-06-10 13:11:26
合計ジャッジ時間 5,691 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
54,100 KB
testcase_01 AC 106 ms
52,872 KB
testcase_02 AC 109 ms
53,776 KB
testcase_03 AC 113 ms
54,020 KB
testcase_04 AC 114 ms
54,112 KB
testcase_05 AC 113 ms
53,836 KB
testcase_06 AC 104 ms
52,976 KB
testcase_07 AC 103 ms
52,836 KB
testcase_08 AC 114 ms
53,632 KB
testcase_09 AC 103 ms
52,520 KB
testcase_10 AC 113 ms
54,016 KB
testcase_11 AC 100 ms
52,760 KB
testcase_12 AC 114 ms
53,900 KB
testcase_13 AC 113 ms
53,796 KB
testcase_14 AC 119 ms
53,944 KB
testcase_15 AC 118 ms
54,100 KB
testcase_16 AC 117 ms
54,328 KB
testcase_17 AC 99 ms
52,924 KB
testcase_18 AC 103 ms
53,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static HashMap<Long, Long> map = new HashMap<>();
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		long n = sc.nextLong();
		System.out.println(getValue(n));
	}
	
	static long getValue(long x) {
	    if (x == 0) {
	        return 1;
	    }
	    if (map.containsKey(x)) {
	        return map.get(x);
	    }
	    long ans = getValue(x / 3) + getValue(x / 5);
	    map.put(x, ans);
	    return ans;
	}
}
0