結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
52,932 KB
testcase_01 AC 114 ms
54,100 KB
testcase_02 AC 99 ms
52,976 KB
testcase_03 AC 113 ms
54,236 KB
testcase_04 AC 116 ms
54,072 KB
testcase_05 AC 111 ms
54,024 KB
testcase_06 AC 110 ms
54,008 KB
testcase_07 AC 92 ms
52,656 KB
testcase_08 AC 93 ms
52,520 KB
testcase_09 AC 96 ms
52,632 KB
testcase_10 AC 93 ms
52,456 KB
testcase_11 AC 99 ms
52,500 KB
testcase_12 AC 107 ms
52,944 KB
testcase_13 AC 119 ms
54,076 KB
testcase_14 AC 110 ms
54,140 KB
testcase_15 AC 100 ms
53,052 KB
testcase_16 AC 99 ms
52,956 KB
testcase_17 AC 99 ms
53,872 KB
testcase_18 AC 103 ms
52,908 KB
testcase_19 AC 98 ms
52,444 KB
testcase_20 AC 95 ms
52,460 KB
testcase_21 AC 98 ms
52,720 KB
testcase_22 AC 103 ms
52,736 KB
testcase_23 AC 108 ms
53,456 KB
testcase_24 AC 114 ms
53,804 KB
testcase_25 AC 100 ms
52,968 KB
testcase_26 AC 97 ms
52,852 KB
testcase_27 AC 99 ms
53,004 KB
testcase_28 AC 112 ms
53,828 KB
testcase_29 AC 99 ms
52,736 KB
testcase_30 AC 109 ms
53,964 KB
testcase_31 AC 115 ms
54,096 KB
testcase_32 AC 112 ms
54,160 KB
testcase_33 AC 112 ms
53,584 KB
testcase_34 AC 109 ms
53,668 KB
testcase_35 AC 112 ms
53,868 KB
testcase_36 AC 115 ms
53,624 KB
testcase_37 AC 113 ms
54,164 KB
testcase_38 AC 108 ms
53,824 KB
testcase_39 AC 111 ms
53,852 KB
testcase_40 AC 112 ms
54,260 KB
testcase_41 AC 100 ms
52,964 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