結果

問題 No.639 An Ordinary Sequence
ユーザー tentententen
提出日時 2020-09-04 18:40:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 1,000 ms
コード長 433 bytes
コンパイル時間 4,259 ms
コンパイル使用メモリ 74,916 KB
実行使用メモリ 55,868 KB
最終ジャッジ日時 2024-11-26 10:16:35
合計ジャッジ時間 5,745 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
55,868 KB
testcase_01 AC 126 ms
53,904 KB
testcase_02 AC 121 ms
53,824 KB
testcase_03 AC 116 ms
53,824 KB
testcase_04 AC 117 ms
53,912 KB
testcase_05 AC 116 ms
54,208 KB
testcase_06 AC 113 ms
53,896 KB
testcase_07 AC 116 ms
54,056 KB
testcase_08 AC 106 ms
52,780 KB
testcase_09 AC 116 ms
53,972 KB
testcase_10 AC 105 ms
52,804 KB
testcase_11 AC 114 ms
53,820 KB
testcase_12 AC 106 ms
52,816 KB
testcase_13 AC 120 ms
53,996 KB
testcase_14 AC 121 ms
54,248 KB
testcase_15 AC 105 ms
52,804 KB
testcase_16 AC 120 ms
54,048 KB
testcase_17 AC 115 ms
53,820 KB
testcase_18 AC 118 ms
53,820 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();
    	map.put(0L, 1L);
    	System.out.println(get(n));
    }
    
    static long get(long x) {
        if (!map.containsKey(x)) {
            map.put(x, get(x / 3) + get(x / 5));
        }
        return map.get(x);
    }
}
0