結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,090 ms
195,068 KB
testcase_01 AC 1,009 ms
195,156 KB
testcase_02 AC 1,027 ms
195,136 KB
testcase_03 AC 1,076 ms
195,084 KB
testcase_04 AC 1,070 ms
195,080 KB
testcase_05 AC 1,102 ms
195,276 KB
testcase_06 AC 1,074 ms
195,100 KB
testcase_07 AC 1,088 ms
195,180 KB
testcase_08 AC 1,093 ms
195,116 KB
testcase_09 AC 1,039 ms
195,100 KB
testcase_10 AC 1,009 ms
195,108 KB
testcase_11 AC 1,028 ms
195,104 KB
testcase_12 AC 1,034 ms
195,192 KB
testcase_13 AC 1,028 ms
195,212 KB
testcase_14 AC 1,051 ms
195,116 KB
testcase_15 AC 1,067 ms
195,084 KB
testcase_16 AC 1,031 ms
195,180 KB
testcase_17 AC 1,051 ms
195,108 KB
testcase_18 AC 1,038 ms
195,156 KB
testcase_19 AC 1,054 ms
195,284 KB
testcase_20 AC 1,083 ms
195,176 KB
testcase_21 AC 1,065 ms
195,104 KB
testcase_22 AC 1,049 ms
195,124 KB
testcase_23 AC 1,036 ms
195,136 KB
testcase_24 AC 1,071 ms
195,092 KB
testcase_25 AC 1,029 ms
195,092 KB
testcase_26 AC 1,060 ms
195,092 KB
testcase_27 AC 1,028 ms
195,204 KB
testcase_28 AC 1,061 ms
195,188 KB
testcase_29 AC 1,052 ms
195,260 KB
testcase_30 AC 1,073 ms
195,136 KB
testcase_31 AC 1,010 ms
195,152 KB
testcase_32 AC 1,072 ms
195,164 KB
testcase_33 AC 1,044 ms
195,096 KB
testcase_34 AC 1,074 ms
195,060 KB
testcase_35 AC 1,107 ms
195,188 KB
testcase_36 AC 1,077 ms
195,136 KB
testcase_37 AC 1,118 ms
195,068 KB
testcase_38 AC 1,063 ms
195,204 KB
testcase_39 AC 1,044 ms
195,144 KB
testcase_40 AC 1,036 ms
195,160 KB
testcase_41 AC 1,045 ms
195,116 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