結果

問題 No.1185 完全な3の倍数
ユーザー lemondolemondo
提出日時 2020-08-22 13:49:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 290 ms / 2,000 ms
コード長 507 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 177,868 KB
最終ジャッジ日時 2024-05-03 10:19:01
合計ジャッジ時間 4,846 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
94,196 KB
testcase_01 AC 38 ms
53,688 KB
testcase_02 AC 37 ms
52,436 KB
testcase_03 AC 117 ms
94,532 KB
testcase_04 AC 118 ms
94,420 KB
testcase_05 AC 122 ms
94,272 KB
testcase_06 AC 115 ms
94,260 KB
testcase_07 AC 116 ms
94,636 KB
testcase_08 AC 290 ms
177,868 KB
testcase_09 AC 33 ms
52,956 KB
testcase_10 AC 33 ms
53,344 KB
testcase_11 AC 34 ms
52,400 KB
testcase_12 AC 33 ms
52,200 KB
testcase_13 AC 35 ms
52,868 KB
testcase_14 AC 33 ms
53,240 KB
testcase_15 AC 32 ms
52,476 KB
testcase_16 AC 33 ms
51,952 KB
testcase_17 AC 33 ms
52,940 KB
testcase_18 AC 32 ms
52,352 KB
testcase_19 AC 114 ms
94,236 KB
testcase_20 AC 113 ms
93,996 KB
testcase_21 AC 113 ms
94,364 KB
testcase_22 AC 114 ms
94,272 KB
testcase_23 AC 118 ms
94,580 KB
testcase_24 AC 115 ms
94,348 KB
testcase_25 AC 70 ms
80,804 KB
testcase_26 AC 109 ms
94,492 KB
testcase_27 AC 113 ms
94,164 KB
testcase_28 AC 113 ms
94,444 KB
testcase_29 AC 115 ms
94,256 KB
testcase_30 AC 117 ms
94,032 KB
testcase_31 AC 48 ms
64,812 KB
testcase_32 AC 109 ms
94,596 KB
testcase_33 AC 73 ms
80,852 KB
testcase_34 AC 111 ms
94,348 KB
testcase_35 AC 112 ms
94,044 KB
testcase_36 AC 112 ms
94,160 KB
testcase_37 AC 115 ms
94,024 KB
testcase_38 AC 116 ms
94,708 KB
testcase_39 AC 34 ms
52,320 KB
testcase_40 AC 34 ms
53,624 KB
testcase_41 AC 45 ms
63,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def input(): return sys.stdin.readline().strip()
def mapint(): return map(int, input().split())
sys.setrecursionlimit(10**9)

N = int(input())

def dfs(idx, string):
    if idx==length:
        ret.append(string)
        return
    for nx in ['0', '3', '6', '9']:
        dfs(idx+1, string+nx)

if N<=100:
    print(N//3-3)
else:
    ans = 100//3-3
    length = len(str(N))
    ret = []
    dfs(0, '')
    for s in ret:
        n = int(s)
        if 100<=n<=N:
            ans += 1
    print(ans)
0