結果

問題 No.1185 完全な3の倍数
ユーザー 萩3萩3
提出日時 2021-05-03 13:38:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 449 ms / 2,000 ms
コード長 478 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 93,880 KB
最終ジャッジ日時 2024-07-22 03:53:36
合計ジャッジ時間 6,427 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 159 ms
89,544 KB
testcase_01 AC 35 ms
52,072 KB
testcase_02 AC 36 ms
53,000 KB
testcase_03 AC 159 ms
89,064 KB
testcase_04 AC 165 ms
92,176 KB
testcase_05 AC 161 ms
89,672 KB
testcase_06 AC 158 ms
89,984 KB
testcase_07 AC 158 ms
89,264 KB
testcase_08 AC 449 ms
93,880 KB
testcase_09 AC 37 ms
52,316 KB
testcase_10 AC 37 ms
52,540 KB
testcase_11 AC 36 ms
52,308 KB
testcase_12 AC 36 ms
52,864 KB
testcase_13 AC 35 ms
52,284 KB
testcase_14 AC 37 ms
53,352 KB
testcase_15 AC 36 ms
52,952 KB
testcase_16 AC 37 ms
52,768 KB
testcase_17 AC 35 ms
52,460 KB
testcase_18 AC 37 ms
53,420 KB
testcase_19 AC 152 ms
80,052 KB
testcase_20 AC 162 ms
87,980 KB
testcase_21 AC 151 ms
84,488 KB
testcase_22 AC 140 ms
81,208 KB
testcase_23 AC 138 ms
80,244 KB
testcase_24 AC 166 ms
87,724 KB
testcase_25 AC 78 ms
75,884 KB
testcase_26 AC 158 ms
84,904 KB
testcase_27 AC 140 ms
80,008 KB
testcase_28 AC 151 ms
84,028 KB
testcase_29 AC 155 ms
82,736 KB
testcase_30 AC 148 ms
84,480 KB
testcase_31 AC 52 ms
69,760 KB
testcase_32 AC 164 ms
89,932 KB
testcase_33 AC 78 ms
77,652 KB
testcase_34 AC 165 ms
88,364 KB
testcase_35 AC 164 ms
92,184 KB
testcase_36 AC 158 ms
87,984 KB
testcase_37 AC 160 ms
87,728 KB
testcase_38 AC 147 ms
84,392 KB
testcase_39 AC 35 ms
53,212 KB
testcase_40 AC 37 ms
53,696 KB
testcase_41 AC 50 ms
69,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def resolve():
    nstr = input()
    length = len(nstr)
    n = int(nstr)

    if length == 2:
        print(n//3-3)
        return

    ten_i = [10**i for i in range(length)]

    import itertools
    result = 14 #100//3 - 4*4 -3
    l=[]
    for pattern in itertools.product([0,3,6,9], repeat=length):
        x = sum([teni * ai for teni, ai in zip(ten_i,pattern)])
        
        if x <= n:
            result += 1
            l.append(x)

    print(result)
    
resolve()
0