結果

問題 No.1185 完全な3の倍数
ユーザー yakeshibayakeshiba
提出日時 2020-11-09 02:47:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 672 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 154,900 KB
最終ジャッジ日時 2024-07-22 15:52:13
合計ジャッジ時間 6,227 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
131,376 KB
testcase_01 AC 39 ms
54,272 KB
testcase_02 AC 38 ms
54,040 KB
testcase_03 AC 157 ms
131,128 KB
testcase_04 AC 163 ms
131,496 KB
testcase_05 AC 159 ms
131,316 KB
testcase_06 AC 156 ms
131,376 KB
testcase_07 AC 156 ms
131,292 KB
testcase_08 AC 187 ms
154,900 KB
testcase_09 AC 39 ms
54,484 KB
testcase_10 AC 37 ms
53,768 KB
testcase_11 AC 37 ms
54,248 KB
testcase_12 AC 39 ms
54,044 KB
testcase_13 AC 39 ms
54,140 KB
testcase_14 AC 38 ms
54,512 KB
testcase_15 AC 38 ms
54,068 KB
testcase_16 AC 38 ms
53,956 KB
testcase_17 AC 38 ms
54,012 KB
testcase_18 AC 38 ms
54,156 KB
testcase_19 AC 79 ms
85,072 KB
testcase_20 AC 153 ms
131,252 KB
testcase_21 AC 116 ms
107,760 KB
testcase_22 AC 80 ms
84,532 KB
testcase_23 AC 78 ms
85,192 KB
testcase_24 AC 158 ms
131,280 KB
testcase_25 AC 56 ms
70,324 KB
testcase_26 AC 119 ms
107,920 KB
testcase_27 AC 80 ms
84,588 KB
testcase_28 AC 118 ms
107,768 KB
testcase_29 AC 115 ms
108,076 KB
testcase_30 AC 117 ms
107,808 KB
testcase_31 AC 47 ms
63,584 KB
testcase_32 AC 165 ms
131,456 KB
testcase_33 AC 76 ms
84,796 KB
testcase_34 AC 154 ms
131,344 KB
testcase_35 AC 173 ms
131,492 KB
testcase_36 AC 161 ms
131,244 KB
testcase_37 AC 158 ms
131,496 KB
testcase_38 AC 120 ms
108,080 KB
testcase_39 AC 38 ms
53,656 KB
testcase_40 AC 38 ms
55,356 KB
testcase_41 AC 44 ms
61,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n = int(input())

if n < 100:
    ans = 0
    for i in range(10,n+1):
        if i%3 == 0:
            if (int(str(i)[0])+int(str(i)[1]))%3 == 0:
                ans += 1
    print(ans)
    exit()
else:
    ans = 30
    q = deque([])
    for i in range(10,100):
        if i%3 == 0:
            if int(str(i)[0])%3 == 0 and int(str(i)[1])%3 == 0:
                q.append(str(i))
    while q:
        now = q.popleft()
        if int(now) > n:
            continue
        if int(now) >= 100:
            ans += 1
        q.append(now+"3")
        q.append(now+"6")
        q.append(now+"9")
        q.append(now+"0")
        
    print(ans)
0