結果

問題 No.2178 Payable Magic Items
ユーザー tassei903tassei903
提出日時 2023-01-07 00:12:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 777 ms / 4,000 ms
コード長 877 bytes
コンパイル時間 364 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 202,052 KB
最終ジャッジ日時 2024-05-08 13:45:25
合計ジャッジ時間 11,961 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,400 KB
testcase_01 AC 40 ms
53,760 KB
testcase_02 AC 40 ms
54,400 KB
testcase_03 AC 638 ms
187,440 KB
testcase_04 AC 41 ms
54,200 KB
testcase_05 AC 671 ms
188,172 KB
testcase_06 AC 654 ms
187,568 KB
testcase_07 AC 40 ms
54,496 KB
testcase_08 AC 646 ms
187,448 KB
testcase_09 AC 180 ms
88,268 KB
testcase_10 AC 49 ms
62,592 KB
testcase_11 AC 777 ms
199,908 KB
testcase_12 AC 728 ms
202,052 KB
testcase_13 AC 763 ms
201,880 KB
testcase_14 AC 751 ms
201,808 KB
testcase_15 AC 744 ms
200,900 KB
testcase_16 AC 743 ms
201,740 KB
testcase_17 AC 701 ms
194,804 KB
testcase_18 AC 77 ms
77,016 KB
testcase_19 AC 194 ms
91,872 KB
testcase_20 AC 51 ms
63,864 KB
testcase_21 AC 79 ms
76,928 KB
testcase_22 AC 79 ms
77,056 KB
testcase_23 AC 53 ms
63,872 KB
testcase_24 AC 737 ms
196,688 KB
testcase_25 AC 704 ms
191,208 KB
testcase_26 AC 202 ms
94,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################

n, k = na()
s = [int(input()) for j in range(n)]
for i in range(n):
    s[i] = (10**k-1)//9*4-s[i]
se = set(s)
ans = len(s)-len(se)

from collections import *
d = defaultdict(int)

def saiki(p, now):
    global ans
    #print(p, now)
    if p == k:
        for i in range(k):
            if (now//(10**i))%(10**(i+1)):
                d[now] |= d[now-10**i]
        if now in se:
            ans += d[now]
            d[now] = 1
        return
    for i in range(5):
        saiki(p+1, now * 10 + i)

saiki(0,0)
print(ans)
0