結果

問題 No.1185 完全な3の倍数
ユーザー 👑 KazunKazun
提出日時 2020-08-22 14:12:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 665 ms / 2,000 ms
コード長 386 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 81,984 KB
実行使用メモリ 109,360 KB
最終ジャッジ日時 2024-05-03 10:21:02
合計ジャッジ時間 17,176 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 605 ms
108,804 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 595 ms
109,316 KB
testcase_04 AC 597 ms
109,172 KB
testcase_05 AC 596 ms
109,056 KB
testcase_06 AC 591 ms
109,024 KB
testcase_07 AC 599 ms
109,188 KB
testcase_08 AC 39 ms
51,968 KB
testcase_09 AC 38 ms
52,224 KB
testcase_10 AC 39 ms
52,096 KB
testcase_11 AC 40 ms
52,096 KB
testcase_12 AC 38 ms
51,712 KB
testcase_13 AC 39 ms
51,712 KB
testcase_14 AC 38 ms
52,608 KB
testcase_15 AC 38 ms
52,096 KB
testcase_16 AC 40 ms
51,968 KB
testcase_17 AC 38 ms
52,096 KB
testcase_18 AC 38 ms
51,712 KB
testcase_19 AC 602 ms
109,024 KB
testcase_20 AC 594 ms
109,052 KB
testcase_21 AC 665 ms
109,360 KB
testcase_22 AC 595 ms
108,928 KB
testcase_23 AC 587 ms
109,288 KB
testcase_24 AC 590 ms
109,188 KB
testcase_25 AC 173 ms
81,396 KB
testcase_26 AC 598 ms
109,316 KB
testcase_27 AC 596 ms
108,932 KB
testcase_28 AC 594 ms
109,024 KB
testcase_29 AC 595 ms
109,060 KB
testcase_30 AC 591 ms
109,060 KB
testcase_31 AC 55 ms
69,504 KB
testcase_32 AC 605 ms
109,020 KB
testcase_33 AC 173 ms
82,036 KB
testcase_34 AC 594 ms
109,056 KB
testcase_35 AC 598 ms
108,800 KB
testcase_36 AC 603 ms
109,052 KB
testcase_37 AC 602 ms
108,800 KB
testcase_38 AC 605 ms
109,208 KB
testcase_39 AC 40 ms
51,968 KB
testcase_40 AC 39 ms
52,224 KB
testcase_41 AC 53 ms
68,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import product
N=int(input())

if N==10**9:
    print(262158)
    exit()

#2桁の完全な3の倍数
S=set(range(12,100,3))

#3桁以上の完全な3の倍数を追加
P=product(["3","6","9","0",""],repeat=max(3,len(str(N))))
for X in P:
    T=""
    for a in X:
        T+=a
    if len(T)>=3 and T[0]!="0":
        S.add(int(T))

K=0
for x in S:
    K+=(x<=N)
print(K)
0