結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
94,032 KB
testcase_01 AC 33 ms
52,224 KB
testcase_02 AC 32 ms
51,840 KB
testcase_03 AC 107 ms
94,080 KB
testcase_04 AC 107 ms
93,932 KB
testcase_05 AC 113 ms
94,088 KB
testcase_06 AC 107 ms
94,060 KB
testcase_07 AC 107 ms
94,080 KB
testcase_08 AC 250 ms
177,320 KB
testcase_09 AC 32 ms
52,096 KB
testcase_10 AC 32 ms
52,096 KB
testcase_11 AC 31 ms
51,584 KB
testcase_12 AC 31 ms
51,584 KB
testcase_13 AC 31 ms
51,584 KB
testcase_14 AC 31 ms
51,840 KB
testcase_15 AC 32 ms
51,968 KB
testcase_16 AC 33 ms
52,224 KB
testcase_17 AC 41 ms
51,584 KB
testcase_18 AC 32 ms
51,840 KB
testcase_19 AC 109 ms
93,908 KB
testcase_20 AC 106 ms
94,080 KB
testcase_21 AC 108 ms
94,208 KB
testcase_22 AC 109 ms
94,024 KB
testcase_23 AC 111 ms
94,208 KB
testcase_24 AC 107 ms
93,916 KB
testcase_25 AC 73 ms
80,384 KB
testcase_26 AC 113 ms
93,824 KB
testcase_27 AC 117 ms
93,824 KB
testcase_28 AC 105 ms
94,464 KB
testcase_29 AC 113 ms
94,196 KB
testcase_30 AC 108 ms
94,080 KB
testcase_31 AC 44 ms
64,128 KB
testcase_32 AC 107 ms
94,080 KB
testcase_33 AC 69 ms
80,512 KB
testcase_34 AC 108 ms
94,080 KB
testcase_35 AC 109 ms
93,952 KB
testcase_36 AC 111 ms
94,572 KB
testcase_37 AC 106 ms
94,188 KB
testcase_38 AC 107 ms
94,080 KB
testcase_39 AC 33 ms
51,840 KB
testcase_40 AC 32 ms
52,096 KB
testcase_41 AC 48 ms
63,232 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