結果

問題 No.2178 Payable Magic Items
ユーザー titiatitia
提出日時 2023-01-07 03:13:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 570 ms / 4,000 ms
コード長 498 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 151,168 KB
最終ジャッジ日時 2024-05-08 13:46:44
合計ジャッジ時間 7,614 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
60,544 KB
testcase_01 AC 52 ms
61,184 KB
testcase_02 AC 52 ms
60,800 KB
testcase_03 AC 259 ms
78,592 KB
testcase_04 AC 52 ms
60,928 KB
testcase_05 AC 60 ms
63,744 KB
testcase_06 AC 71 ms
66,048 KB
testcase_07 AC 56 ms
61,184 KB
testcase_08 AC 70 ms
65,408 KB
testcase_09 AC 70 ms
65,792 KB
testcase_10 AC 56 ms
62,336 KB
testcase_11 AC 457 ms
151,040 KB
testcase_12 AC 561 ms
151,040 KB
testcase_13 AC 569 ms
151,040 KB
testcase_14 AC 555 ms
151,168 KB
testcase_15 AC 568 ms
151,040 KB
testcase_16 AC 570 ms
150,912 KB
testcase_17 AC 382 ms
101,888 KB
testcase_18 AC 94 ms
74,752 KB
testcase_19 AC 182 ms
94,592 KB
testcase_20 AC 76 ms
67,456 KB
testcase_21 AC 89 ms
73,600 KB
testcase_22 AC 87 ms
75,904 KB
testcase_23 AC 75 ms
68,480 KB
testcase_24 AC 497 ms
128,256 KB
testcase_25 AC 318 ms
86,784 KB
testcase_26 AC 207 ms
102,144 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