結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 453 ms
47,616 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 26 ms
11,008 KB
testcase_03 AC 435 ms
45,568 KB
testcase_04 AC 474 ms
51,328 KB
testcase_05 AC 467 ms
48,640 KB
testcase_06 AC 409 ms
46,080 KB
testcase_07 AC 420 ms
45,312 KB
testcase_08 AC 502 ms
54,528 KB
testcase_09 AC 26 ms
10,880 KB
testcase_10 AC 26 ms
10,880 KB
testcase_11 AC 26 ms
10,752 KB
testcase_12 AC 28 ms
10,752 KB
testcase_13 AC 27 ms
10,752 KB
testcase_14 AC 28 ms
10,752 KB
testcase_15 AC 28 ms
10,880 KB
testcase_16 AC 27 ms
10,752 KB
testcase_17 AC 27 ms
10,880 KB
testcase_18 AC 27 ms
10,880 KB
testcase_19 AC 145 ms
18,432 KB
testcase_20 AC 425 ms
42,496 KB
testcase_21 AC 271 ms
30,464 KB
testcase_22 AC 179 ms
21,504 KB
testcase_23 AC 151 ms
18,560 KB
testcase_24 AC 382 ms
42,368 KB
testcase_25 AC 56 ms
12,672 KB
testcase_26 AC 264 ms
30,720 KB
testcase_27 AC 150 ms
18,560 KB
testcase_28 AC 278 ms
31,872 KB
testcase_29 AC 245 ms
27,648 KB
testcase_30 AC 255 ms
30,592 KB
testcase_31 AC 34 ms
11,136 KB
testcase_32 AC 437 ms
48,384 KB
testcase_33 AC 104 ms
16,256 KB
testcase_34 AC 380 ms
42,368 KB
testcase_35 AC 461 ms
51,328 KB
testcase_36 AC 380 ms
42,368 KB
testcase_37 AC 391 ms
42,368 KB
testcase_38 AC 277 ms
30,464 KB
testcase_39 AC 26 ms
10,752 KB
testcase_40 AC 27 ms
10,880 KB
testcase_41 AC 28 ms
10,880 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