結果

問題 No.1185 完全な3の倍数
ユーザー もりをもりを
提出日時 2020-08-22 13:23:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 561 ms / 2,000 ms
コード長 1,152 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 44,032 KB
最終ジャッジ日時 2024-11-24 09:18:28
合計ジャッジ時間 25,480 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 503 ms
43,904 KB
testcase_01 AC 506 ms
43,520 KB
testcase_02 AC 499 ms
43,900 KB
testcase_03 AC 504 ms
43,780 KB
testcase_04 AC 511 ms
43,644 KB
testcase_05 AC 505 ms
43,616 KB
testcase_06 AC 505 ms
43,648 KB
testcase_07 AC 504 ms
43,772 KB
testcase_08 AC 501 ms
43,748 KB
testcase_09 AC 504 ms
43,496 KB
testcase_10 AC 501 ms
43,616 KB
testcase_11 AC 507 ms
43,616 KB
testcase_12 AC 503 ms
43,748 KB
testcase_13 AC 508 ms
43,516 KB
testcase_14 AC 501 ms
43,904 KB
testcase_15 AC 502 ms
43,760 KB
testcase_16 AC 561 ms
43,904 KB
testcase_17 AC 502 ms
43,752 KB
testcase_18 AC 514 ms
43,520 KB
testcase_19 AC 506 ms
43,496 KB
testcase_20 AC 512 ms
43,512 KB
testcase_21 AC 501 ms
43,880 KB
testcase_22 AC 502 ms
43,516 KB
testcase_23 AC 502 ms
43,752 KB
testcase_24 AC 501 ms
43,624 KB
testcase_25 AC 501 ms
43,776 KB
testcase_26 AC 503 ms
43,520 KB
testcase_27 AC 503 ms
43,652 KB
testcase_28 AC 506 ms
43,384 KB
testcase_29 AC 499 ms
43,496 KB
testcase_30 AC 503 ms
43,616 KB
testcase_31 AC 501 ms
43,772 KB
testcase_32 AC 502 ms
43,780 KB
testcase_33 AC 500 ms
43,624 KB
testcase_34 AC 501 ms
43,512 KB
testcase_35 AC 504 ms
43,496 KB
testcase_36 AC 502 ms
43,880 KB
testcase_37 AC 503 ms
43,520 KB
testcase_38 AC 501 ms
44,004 KB
testcase_39 AC 504 ms
43,776 KB
testcase_40 AC 504 ms
44,032 KB
testcase_41 AC 501 ms
43,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

def cond1(x):
    return len(str(x)) >= 2 and x % 3 == 0

def cond2(x):
    x = str(x)
    D = len(x)
    for i in range(D):
        for j in range(i + 1, D):
            p = int(x[i]) + int(x[j])
            if p % 3 != 0:
                return False
    return True

def cond3(x):
    x = str(x)
    D = len(x)
    for i in x:
        if int(i) % 3 == 0:
            return False
    return True

def cond(x):
    return cond1(x) and cond2(x)

n = int(input()) + 1    # 未満

if n <= 1000:
    res = 0
    for i in range(n):
        res += cond(i)
    print(res)
    exit(0)

s = str(n)
d = len(s)

res = 0
for j in range(min(100, n)):
    if cond(j) and cond3(j):
        res += 1

dp = np.zeros((d + 1, 2), dtype='i')
dp[0, 0] = 1

for i in range(d):
    dig = int(s[i])
    # dp[.][0] : 小さいことが未確定
    for j in range(0, 10, 3):
        if j > dig:
            break
        if j == dig:
            dp[i + 1][0] += dp[i][0]
        else:
            dp[i + 1][1] += dp[i][0]
    # dp[.][1] : 小さいことが確定
    for j in range(0, 10, 3):
        dp[i + 1][1] += dp[i][1]

print(dp[d, 1] + res - 4)
0