結果
問題 | No.2178 Payable Magic Items |
ユーザー | tassei903 |
提出日時 | 2023-01-07 00:02:53 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 834 bytes |
コンパイル時間 | 241 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 182,704 KB |
最終ジャッジ日時 | 2024-05-08 13:44:40 |
合計ジャッジ時間 | 10,025 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
54,016 KB |
testcase_01 | AC | 44 ms
54,016 KB |
testcase_02 | AC | 42 ms
53,760 KB |
testcase_03 | AC | 522 ms
174,736 KB |
testcase_04 | AC | 43 ms
53,888 KB |
testcase_05 | WA | - |
testcase_06 | AC | 516 ms
174,340 KB |
testcase_07 | AC | 44 ms
53,760 KB |
testcase_08 | AC | 517 ms
174,432 KB |
testcase_09 | AC | 161 ms
88,592 KB |
testcase_10 | AC | 54 ms
63,616 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 79 ms
76,928 KB |
testcase_23 | AC | 55 ms
64,640 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
ソースコード
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) ans = 0 def saiki(p, now): global ans #print(p, now) if p == k: for i in range(5): 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)