結果

問題 No.1185 完全な3の倍数
ユーザー 37zigen37zigen
提出日時 2020-08-22 18:32:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,203 ms / 2,000 ms
コード長 258 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 195,284 KB
最終ジャッジ日時 2024-05-03 10:38:53
合計ジャッジ時間 48,335 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,131 ms
195,112 KB
testcase_01 AC 1,059 ms
195,152 KB
testcase_02 AC 1,067 ms
195,096 KB
testcase_03 AC 1,100 ms
195,128 KB
testcase_04 AC 1,108 ms
195,280 KB
testcase_05 AC 1,118 ms
195,256 KB
testcase_06 AC 1,113 ms
195,028 KB
testcase_07 AC 1,082 ms
195,024 KB
testcase_08 AC 1,107 ms
195,280 KB
testcase_09 AC 1,038 ms
195,156 KB
testcase_10 AC 1,045 ms
195,152 KB
testcase_11 AC 1,067 ms
195,028 KB
testcase_12 AC 1,068 ms
195,024 KB
testcase_13 AC 1,073 ms
195,240 KB
testcase_14 AC 1,062 ms
195,004 KB
testcase_15 AC 1,062 ms
195,068 KB
testcase_16 AC 1,060 ms
195,124 KB
testcase_17 AC 1,059 ms
195,156 KB
testcase_18 AC 1,057 ms
195,284 KB
testcase_19 AC 1,203 ms
195,176 KB
testcase_20 AC 1,082 ms
195,156 KB
testcase_21 AC 1,091 ms
195,116 KB
testcase_22 AC 1,089 ms
195,112 KB
testcase_23 AC 1,071 ms
195,216 KB
testcase_24 AC 1,139 ms
195,132 KB
testcase_25 AC 1,062 ms
195,156 KB
testcase_26 AC 1,115 ms
195,024 KB
testcase_27 AC 1,124 ms
195,160 KB
testcase_28 AC 1,104 ms
195,024 KB
testcase_29 AC 1,088 ms
195,020 KB
testcase_30 AC 1,109 ms
195,028 KB
testcase_31 AC 1,054 ms
195,204 KB
testcase_32 AC 1,117 ms
195,196 KB
testcase_33 AC 1,085 ms
195,192 KB
testcase_34 AC 1,140 ms
195,072 KB
testcase_35 AC 1,124 ms
195,028 KB
testcase_36 AC 1,119 ms
195,028 KB
testcase_37 AC 1,153 ms
195,024 KB
testcase_38 AC 1,120 ms
195,084 KB
testcase_39 AC 1,059 ms
195,156 KB
testcase_40 AC 1,072 ms
195,024 KB
testcase_41 AC 1,055 ms
195,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
N=int(input())
d=[""]
s=[]
for i in range(10):
    d=[i+j for i in d for j in "0369"]
    s+=d
a=set([])
for _ in s:
    a.add(int(_))
for i in range(12,99,3):
    a.add(i)
b=list(a)
b.sort()
p=0
while N>=int(b[p]):
    p+=1
ans=p-4
print(ans)
0