結果

問題 No.1185 完全な3の倍数
ユーザー tonyu0tonyu0
提出日時 2020-08-22 15:06:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 503 ms / 2,000 ms
コード長 785 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 54,144 KB
最終ジャッジ日時 2024-11-24 09:32:49
合計ジャッジ時間 10,130 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 426 ms
47,488 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 24 ms
10,624 KB
testcase_03 AC 408 ms
45,056 KB
testcase_04 AC 468 ms
51,328 KB
testcase_05 AC 433 ms
48,512 KB
testcase_06 AC 421 ms
46,080 KB
testcase_07 AC 413 ms
45,184 KB
testcase_08 AC 503 ms
54,144 KB
testcase_09 AC 27 ms
10,880 KB
testcase_10 AC 24 ms
10,752 KB
testcase_11 AC 26 ms
10,624 KB
testcase_12 AC 26 ms
10,752 KB
testcase_13 AC 25 ms
10,624 KB
testcase_14 AC 25 ms
10,624 KB
testcase_15 AC 25 ms
10,624 KB
testcase_16 AC 25 ms
10,624 KB
testcase_17 AC 24 ms
10,752 KB
testcase_18 AC 27 ms
10,752 KB
testcase_19 AC 141 ms
18,432 KB
testcase_20 AC 371 ms
42,496 KB
testcase_21 AC 275 ms
30,336 KB
testcase_22 AC 180 ms
21,632 KB
testcase_23 AC 149 ms
18,432 KB
testcase_24 AC 381 ms
42,112 KB
testcase_25 AC 53 ms
12,672 KB
testcase_26 AC 261 ms
30,208 KB
testcase_27 AC 139 ms
18,304 KB
testcase_28 AC 273 ms
31,744 KB
testcase_29 AC 237 ms
27,392 KB
testcase_30 AC 264 ms
30,464 KB
testcase_31 AC 33 ms
11,136 KB
testcase_32 AC 445 ms
48,384 KB
testcase_33 AC 106 ms
15,872 KB
testcase_34 AC 382 ms
42,240 KB
testcase_35 AC 450 ms
51,328 KB
testcase_36 AC 375 ms
42,496 KB
testcase_37 AC 373 ms
42,240 KB
testcase_38 AC 262 ms
30,336 KB
testcase_39 AC 28 ms
10,624 KB
testcase_40 AC 29 ms
10,624 KB
testcase_41 AC 26 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n = int(input())
# まず3の倍数なら桁話は3の倍数
#
# 1212ダメ
# 3の倍数でないものが現れるのは2桁の時のみ?
# 1515 - 11でダメ
# 3桁以上だと3の倍数以外が桁に現れると条件を満たさない?
# 3の倍数のうち、3の倍数のみが桁に現れるものの数
# -> 桁DPでもいいけど全部列挙できる

# 2桁は全部見つける、1桁は最後に除外
two = [12, 15, 18, 21, 24, 27, 42, 45, 48, 51, 54, 57, 72, 75, 78, 81, 84, 87]
ans = 0
q = deque()
q.append(3)
q.append(6)
q.append(9)
while len(q) > 0:
    x = q.popleft()
    if x > n:
        continue
    ans += 1
    for y in [0, 3, 6, 9]:
        q.append(x * 10 + y)

for t in two:
    if t <= n:
        ans += 1
print(ans - 3)
0