結果

問題 No.1185 完全な3の倍数
ユーザー 37zigen37zigen
提出日時 2020-08-22 18:31:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 257 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 56,700 KB
最終ジャッジ日時 2024-10-15 12:06:20
合計ジャッジ時間 15,123 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 349 ms
56,552 KB
testcase_01 AC 292 ms
56,572 KB
testcase_02 AC 286 ms
56,508 KB
testcase_03 AC 344 ms
56,448 KB
testcase_04 AC 355 ms
56,452 KB
testcase_05 AC 361 ms
56,568 KB
testcase_06 AC 358 ms
56,568 KB
testcase_07 AC 348 ms
56,444 KB
testcase_08 RE -
testcase_09 AC 293 ms
56,568 KB
testcase_10 AC 288 ms
56,568 KB
testcase_11 AC 292 ms
56,568 KB
testcase_12 AC 292 ms
56,444 KB
testcase_13 AC 290 ms
56,452 KB
testcase_14 AC 292 ms
56,448 KB
testcase_15 AC 288 ms
56,572 KB
testcase_16 AC 292 ms
56,444 KB
testcase_17 AC 294 ms
56,572 KB
testcase_18 AC 296 ms
56,440 KB
testcase_19 AC 308 ms
56,576 KB
testcase_20 AC 347 ms
56,444 KB
testcase_21 AC 326 ms
56,444 KB
testcase_22 AC 316 ms
56,696 KB
testcase_23 AC 309 ms
56,444 KB
testcase_24 AC 348 ms
56,572 KB
testcase_25 AC 289 ms
56,448 KB
testcase_26 AC 332 ms
56,440 KB
testcase_27 AC 304 ms
56,444 KB
testcase_28 AC 333 ms
56,696 KB
testcase_29 AC 330 ms
56,696 KB
testcase_30 AC 331 ms
56,440 KB
testcase_31 AC 294 ms
56,696 KB
testcase_32 AC 372 ms
56,564 KB
testcase_33 AC 313 ms
56,440 KB
testcase_34 AC 351 ms
56,632 KB
testcase_35 AC 367 ms
56,440 KB
testcase_36 AC 349 ms
56,440 KB
testcase_37 AC 347 ms
56,444 KB
testcase_38 AC 329 ms
56,568 KB
testcase_39 AC 289 ms
56,440 KB
testcase_40 AC 292 ms
56,568 KB
testcase_41 AC 291 ms
56,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
N=int(input())
d=[""]
s=[]
for i in range(9):
    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