結果

問題 No.2178 Payable Magic Items
ユーザー titiatitia
提出日時 2023-01-07 03:13:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 507 ms / 4,000 ms
コード長 498 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 82,056 KB
実行使用メモリ 151,328 KB
最終ジャッジ日時 2024-12-14 18:21:41
合計ジャッジ時間 6,872 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
61,192 KB
testcase_01 AC 47 ms
62,352 KB
testcase_02 AC 47 ms
61,012 KB
testcase_03 AC 249 ms
78,680 KB
testcase_04 AC 47 ms
61,200 KB
testcase_05 AC 54 ms
65,532 KB
testcase_06 AC 64 ms
66,264 KB
testcase_07 AC 52 ms
61,592 KB
testcase_08 AC 62 ms
65,768 KB
testcase_09 AC 62 ms
66,588 KB
testcase_10 AC 49 ms
63,488 KB
testcase_11 AC 401 ms
150,964 KB
testcase_12 AC 498 ms
151,328 KB
testcase_13 AC 507 ms
151,296 KB
testcase_14 AC 498 ms
150,976 KB
testcase_15 AC 497 ms
150,960 KB
testcase_16 AC 506 ms
151,056 KB
testcase_17 AC 345 ms
102,016 KB
testcase_18 AC 76 ms
75,164 KB
testcase_19 AC 158 ms
94,780 KB
testcase_20 AC 62 ms
68,500 KB
testcase_21 AC 75 ms
75,140 KB
testcase_22 AC 73 ms
76,516 KB
testcase_23 AC 65 ms
69,496 KB
testcase_24 AC 446 ms
127,780 KB
testcase_25 AC 292 ms
87,112 KB
testcase_26 AC 176 ms
102,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,K=map(int,input().split())
S=[list(map(int,list(input().strip()))) for i in range(N)]

X=[]

for s in S:
    a=0
    for i in range(len(s)):
        a+=(5**i)*s[i]
    X.append(a)


USED=[0]*(5**8+1)

SET=set(X)

ANS=0

for i in range(5**8,-1,-1):
    if i in SET:
        if USED[i]==1:
            ANS+=1
        USED[i]=1
    if USED[i]==1:
        for j in range(8):
            if (i%(5**(j+1)))//(5**j)!=0:
                USED[i-(5**j)]=1

print(ANS)
0