結果

問題 No.1185 完全な3の倍数
ユーザー KeroruKeroru
提出日時 2020-08-22 16:23:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 165 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 148,636 KB
最終ジャッジ日時 2024-05-03 10:35:13
合計ジャッジ時間 7,407 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
148,456 KB
testcase_01 AC 137 ms
148,012 KB
testcase_02 AC 140 ms
148,356 KB
testcase_03 AC 135 ms
148,192 KB
testcase_04 AC 135 ms
148,636 KB
testcase_05 AC 141 ms
148,144 KB
testcase_06 AC 142 ms
148,152 KB
testcase_07 AC 141 ms
148,200 KB
testcase_08 AC 140 ms
148,396 KB
testcase_09 AC 138 ms
148,280 KB
testcase_10 AC 141 ms
148,384 KB
testcase_11 AC 139 ms
147,964 KB
testcase_12 AC 137 ms
148,532 KB
testcase_13 AC 141 ms
148,412 KB
testcase_14 AC 133 ms
148,024 KB
testcase_15 AC 134 ms
148,280 KB
testcase_16 AC 134 ms
148,428 KB
testcase_17 AC 140 ms
148,412 KB
testcase_18 AC 138 ms
148,156 KB
testcase_19 AC 141 ms
148,452 KB
testcase_20 AC 144 ms
148,220 KB
testcase_21 AC 140 ms
148,280 KB
testcase_22 AC 142 ms
148,304 KB
testcase_23 AC 138 ms
148,152 KB
testcase_24 AC 144 ms
148,284 KB
testcase_25 AC 136 ms
148,148 KB
testcase_26 AC 137 ms
148,152 KB
testcase_27 AC 135 ms
148,152 KB
testcase_28 AC 134 ms
148,140 KB
testcase_29 AC 139 ms
148,032 KB
testcase_30 AC 134 ms
148,296 KB
testcase_31 AC 138 ms
148,144 KB
testcase_32 AC 136 ms
148,388 KB
testcase_33 AC 139 ms
148,280 KB
testcase_34 AC 146 ms
148,144 KB
testcase_35 AC 136 ms
147,960 KB
testcase_36 AC 139 ms
148,236 KB
testcase_37 AC 141 ms
148,292 KB
testcase_38 AC 143 ms
148,280 KB
testcase_39 AC 139 ms
148,028 KB
testcase_40 AC 146 ms
147,764 KB
testcase_41 AC 139 ms
148,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import*;d=[''];s=[]
for _ in'x'*9:
 d=[i+j for i in d for j in'0369'];s+=d
s+=range(9,99,3);print(bisect(sorted(set([int(i)for i in s])),int(input()))-4)
0