結果

問題 No.1185 完全な3の倍数
ユーザー qumazakiqumazaki
提出日時 2020-09-12 02:24:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 330 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 80,200 KB
最終ジャッジ日時 2024-06-09 09:37:22
合計ジャッジ時間 4,149 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
73,016 KB
testcase_01 AC 42 ms
53,408 KB
testcase_02 AC 42 ms
53,632 KB
testcase_03 AC 56 ms
72,448 KB
testcase_04 AC 62 ms
79,680 KB
testcase_05 AC 55 ms
73,312 KB
testcase_06 AC 55 ms
72,544 KB
testcase_07 AC 53 ms
72,832 KB
testcase_08 AC 65 ms
79,964 KB
testcase_09 AC 42 ms
53,760 KB
testcase_10 AC 40 ms
54,016 KB
testcase_11 AC 42 ms
53,632 KB
testcase_12 AC 39 ms
53,632 KB
testcase_13 AC 42 ms
53,628 KB
testcase_14 AC 44 ms
53,632 KB
testcase_15 AC 41 ms
53,888 KB
testcase_16 AC 40 ms
53,760 KB
testcase_17 AC 41 ms
53,632 KB
testcase_18 AC 43 ms
53,760 KB
testcase_19 AC 51 ms
64,896 KB
testcase_20 AC 53 ms
71,808 KB
testcase_21 AC 51 ms
68,224 KB
testcase_22 AC 52 ms
66,048 KB
testcase_23 AC 50 ms
64,896 KB
testcase_24 AC 53 ms
71,424 KB
testcase_25 AC 46 ms
61,824 KB
testcase_26 AC 51 ms
68,224 KB
testcase_27 AC 47 ms
64,640 KB
testcase_28 AC 51 ms
69,100 KB
testcase_29 AC 49 ms
67,216 KB
testcase_30 AC 50 ms
68,352 KB
testcase_31 AC 44 ms
60,544 KB
testcase_32 AC 55 ms
73,216 KB
testcase_33 AC 49 ms
63,360 KB
testcase_34 AC 52 ms
71,808 KB
testcase_35 AC 65 ms
80,200 KB
testcase_36 AC 52 ms
71,552 KB
testcase_37 AC 51 ms
71,808 KB
testcase_38 AC 55 ms
68,352 KB
testcase_39 AC 39 ms
53,536 KB
testcase_40 AC 48 ms
53,632 KB
testcase_41 AC 44 ms
53,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n = int(input())
ans = min(100,n)//3 - 10//3

d = deque()
for i in [3,6,9]:
    for j in [0,3,6,9]:
        d.append(i*10+j)

while(True):
    i = d.popleft()
    for j in [0,3,6,9]:
        x = i*10+j
        if(x > n):
            print(ans)
            exit()
        ans += 1
        d.append(x)
0