結果

問題 No.2178 Payable Magic Items
ユーザー tassei903tassei903
提出日時 2023-01-07 00:08:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 827 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 204,052 KB
最終ジャッジ日時 2024-05-08 13:45:57
合計ジャッジ時間 13,093 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,016 KB
testcase_01 AC 44 ms
54,144 KB
testcase_02 AC 46 ms
53,632 KB
testcase_03 AC 728 ms
187,692 KB
testcase_04 AC 41 ms
53,888 KB
testcase_05 AC 771 ms
193,204 KB
testcase_06 AC 760 ms
187,944 KB
testcase_07 AC 38 ms
53,888 KB
testcase_08 AC 728 ms
187,572 KB
testcase_09 AC 188 ms
88,136 KB
testcase_10 AC 54 ms
62,720 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 817 ms
203,920 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 206 ms
91,360 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 87 ms
77,184 KB
testcase_23 AC 57 ms
63,360 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 207 ms
92,116 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)]
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