結果

問題 No.1185 完全な3の倍数
ユーザー roarisroaris
提出日時 2020-08-22 16:36:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 352 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-05-03 10:35:58
合計ジャッジ時間 6,181 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
75,904 KB
testcase_01 AC 108 ms
76,032 KB
testcase_02 AC 102 ms
75,588 KB
testcase_03 AC 127 ms
75,892 KB
testcase_04 AC 122 ms
76,056 KB
testcase_05 AC 127 ms
76,468 KB
testcase_06 AC 131 ms
76,032 KB
testcase_07 AC 126 ms
76,032 KB
testcase_08 AC 122 ms
76,240 KB
testcase_09 AC 101 ms
75,572 KB
testcase_10 AC 105 ms
75,512 KB
testcase_11 AC 102 ms
75,520 KB
testcase_12 AC 103 ms
75,540 KB
testcase_13 AC 101 ms
75,620 KB
testcase_14 AC 114 ms
75,372 KB
testcase_15 AC 100 ms
75,520 KB
testcase_16 AC 100 ms
75,776 KB
testcase_17 AC 103 ms
75,520 KB
testcase_18 AC 103 ms
75,640 KB
testcase_19 AC 120 ms
76,032 KB
testcase_20 AC 124 ms
76,160 KB
testcase_21 AC 121 ms
75,904 KB
testcase_22 AC 119 ms
76,104 KB
testcase_23 AC 117 ms
75,904 KB
testcase_24 AC 121 ms
76,176 KB
testcase_25 AC 121 ms
75,776 KB
testcase_26 AC 125 ms
76,192 KB
testcase_27 AC 121 ms
75,840 KB
testcase_28 AC 116 ms
75,904 KB
testcase_29 AC 118 ms
76,288 KB
testcase_30 AC 116 ms
76,800 KB
testcase_31 AC 111 ms
76,160 KB
testcase_32 AC 128 ms
75,904 KB
testcase_33 AC 119 ms
75,904 KB
testcase_34 AC 128 ms
76,120 KB
testcase_35 AC 125 ms
76,160 KB
testcase_36 AC 123 ms
76,388 KB
testcase_37 AC 125 ms
76,316 KB
testcase_38 AC 121 ms
76,428 KB
testcase_39 AC 103 ms
76,044 KB
testcase_40 AC 118 ms
75,728 KB
testcase_41 AC 110 ms
75,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def dfs(d, now):
    global ans
    
    if d==10:
        if 10<=now<=N:
            ans += 1
        return
    
    for n in [0, 3, 6, 9]:
        dfs(d+1, 10*now+n)

N = int(input())
ans = 0
dfs(0, 0)

for i in range(10, 100):
    if i%3==0 and (i//10%3!=0 or i%10%3!=0) and i<=N:
        ans += 1

print(ans)
0