結果

問題 No.1185 完全な3の倍数
ユーザー tentententen
提出日時 2020-08-24 10:17:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 1,198 bytes
コンパイル時間 2,198 ms
コンパイル使用メモリ 77,968 KB
実行使用メモリ 54,272 KB
最終ジャッジ日時 2024-05-03 10:42:11
合計ジャッジ時間 7,468 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
54,088 KB
testcase_01 AC 115 ms
54,112 KB
testcase_02 AC 99 ms
53,056 KB
testcase_03 AC 112 ms
53,756 KB
testcase_04 AC 108 ms
53,724 KB
testcase_05 AC 121 ms
53,836 KB
testcase_06 AC 104 ms
52,948 KB
testcase_07 AC 101 ms
54,100 KB
testcase_08 AC 106 ms
53,700 KB
testcase_09 AC 120 ms
54,184 KB
testcase_10 AC 107 ms
52,780 KB
testcase_11 AC 112 ms
53,780 KB
testcase_12 AC 94 ms
52,676 KB
testcase_13 AC 100 ms
52,936 KB
testcase_14 AC 101 ms
53,008 KB
testcase_15 AC 113 ms
53,796 KB
testcase_16 AC 112 ms
54,272 KB
testcase_17 AC 110 ms
53,964 KB
testcase_18 AC 99 ms
53,040 KB
testcase_19 AC 106 ms
53,888 KB
testcase_20 AC 110 ms
54,148 KB
testcase_21 AC 93 ms
52,540 KB
testcase_22 AC 110 ms
53,952 KB
testcase_23 AC 114 ms
53,980 KB
testcase_24 AC 110 ms
53,964 KB
testcase_25 AC 113 ms
54,076 KB
testcase_26 AC 114 ms
54,056 KB
testcase_27 AC 112 ms
54,096 KB
testcase_28 AC 107 ms
54,124 KB
testcase_29 AC 114 ms
54,180 KB
testcase_30 AC 102 ms
53,064 KB
testcase_31 AC 116 ms
54,032 KB
testcase_32 AC 116 ms
54,260 KB
testcase_33 AC 118 ms
53,960 KB
testcase_34 AC 110 ms
54,116 KB
testcase_35 AC 97 ms
52,836 KB
testcase_36 AC 99 ms
53,912 KB
testcase_37 AC 110 ms
54,152 KB
testcase_38 AC 97 ms
53,016 KB
testcase_39 AC 97 ms
52,632 KB
testcase_40 AC 92 ms
52,572 KB
testcase_41 AC 113 ms
53,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        char[] arr = sc.next().toCharArray();
        int length = arr.length;
        if (length > 2) {
            int[][] dp = new int[length + 1][2];
            dp[0][0] = 1;
            for (int i = 1; i <= length; i++) {
                int a = arr[i - 1] - '0';
                if (a % 3 == 0) {
                    dp[i][0] += dp[i - 1][0];
                    
                }
                dp[i][1] += dp[i - 1][0] * ((a + 2) / 3);
                dp[i][1] += dp[i - 1][1] * 4;
            }
            int count = dp[length][0] + dp[length][1] - 4;
            for (int i = 10; i <= 99; i++) {
                if (i % 10 % 3 != 0 && (i % 10 + i / 10) % 3 == 0) {
                    count++;
                }
            }
            System.out.println(count);
        } else {
            int count = 0;
            for (int i = 10; i <= Integer.parseInt(new String(arr)); i++) {
                if ((i % 10 + i / 10) % 3 == 0) {
                    count++;
                }
            }
            System.out.println(count);
        }
    }
}
0