結果

問題 No.639 An Ordinary Sequence
ユーザー tentententen
提出日時 2020-09-04 18:40:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 1,000 ms
コード長 433 bytes
コンパイル時間 4,130 ms
コンパイル使用メモリ 75,332 KB
実行使用メモリ 42,044 KB
最終ジャッジ日時 2024-05-04 20:06:58
合計ジャッジ時間 4,955 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,740 KB
testcase_01 AC 107 ms
41,764 KB
testcase_02 AC 110 ms
41,776 KB
testcase_03 AC 112 ms
41,984 KB
testcase_04 AC 107 ms
41,592 KB
testcase_05 AC 109 ms
41,916 KB
testcase_06 AC 114 ms
41,520 KB
testcase_07 AC 99 ms
41,300 KB
testcase_08 AC 111 ms
41,620 KB
testcase_09 AC 112 ms
41,588 KB
testcase_10 AC 95 ms
41,820 KB
testcase_11 AC 106 ms
41,328 KB
testcase_12 AC 116 ms
42,044 KB
testcase_13 AC 103 ms
41,680 KB
testcase_14 AC 105 ms
41,896 KB
testcase_15 AC 104 ms
41,736 KB
testcase_16 AC 110 ms
41,956 KB
testcase_17 AC 112 ms
41,452 KB
testcase_18 AC 104 ms
41,744 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