結果

問題 No.1185 完全な3の倍数
ユーザー roarisroaris
提出日時 2020-08-22 16:36:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 352 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 76,556 KB
最終ジャッジ日時 2024-11-24 09:43:28
合計ジャッジ時間 6,078 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
76,096 KB
testcase_01 AC 102 ms
75,324 KB
testcase_02 AC 99 ms
75,652 KB
testcase_03 AC 123 ms
76,136 KB
testcase_04 AC 122 ms
75,968 KB
testcase_05 AC 125 ms
76,200 KB
testcase_06 AC 127 ms
76,556 KB
testcase_07 AC 124 ms
76,512 KB
testcase_08 AC 125 ms
76,096 KB
testcase_09 AC 107 ms
75,984 KB
testcase_10 AC 102 ms
75,388 KB
testcase_11 AC 103 ms
75,332 KB
testcase_12 AC 104 ms
75,604 KB
testcase_13 AC 109 ms
75,440 KB
testcase_14 AC 105 ms
75,444 KB
testcase_15 AC 106 ms
75,264 KB
testcase_16 AC 108 ms
75,504 KB
testcase_17 AC 104 ms
75,516 KB
testcase_18 AC 104 ms
75,500 KB
testcase_19 AC 122 ms
75,900 KB
testcase_20 AC 120 ms
75,920 KB
testcase_21 AC 123 ms
75,720 KB
testcase_22 AC 125 ms
76,224 KB
testcase_23 AC 123 ms
76,044 KB
testcase_24 AC 116 ms
76,124 KB
testcase_25 AC 114 ms
76,232 KB
testcase_26 AC 120 ms
75,952 KB
testcase_27 AC 121 ms
75,924 KB
testcase_28 AC 118 ms
75,896 KB
testcase_29 AC 117 ms
75,956 KB
testcase_30 AC 120 ms
76,168 KB
testcase_31 AC 112 ms
75,944 KB
testcase_32 AC 124 ms
76,400 KB
testcase_33 AC 114 ms
75,724 KB
testcase_34 AC 125 ms
75,972 KB
testcase_35 AC 126 ms
75,780 KB
testcase_36 AC 124 ms
76,308 KB
testcase_37 AC 120 ms
76,096 KB
testcase_38 AC 125 ms
75,900 KB
testcase_39 AC 102 ms
75,888 KB
testcase_40 AC 100 ms
75,392 KB
testcase_41 AC 107 ms
75,764 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