結果

問題 No.2178 Payable Magic Items
ユーザー titiatitia
提出日時 2023-01-07 03:11:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 488 bytes
コンパイル時間 476 ms
コンパイル使用メモリ 82,848 KB
実行使用メモリ 151,320 KB
最終ジャッジ日時 2024-05-08 13:47:07
合計ジャッジ時間 6,317 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
60,800 KB
testcase_01 AC 46 ms
61,056 KB
testcase_02 AC 46 ms
60,672 KB
testcase_03 AC 176 ms
78,976 KB
testcase_04 AC 49 ms
61,056 KB
testcase_05 AC 66 ms
67,840 KB
testcase_06 WA -
testcase_07 AC 49 ms
60,800 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 399 ms
150,912 KB
testcase_13 WA -
testcase_14 AC 412 ms
150,912 KB
testcase_15 AC 411 ms
151,296 KB
testcase_16 AC 416 ms
150,912 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 135 ms
95,228 KB
testcase_20 AC 59 ms
67,456 KB
testcase_21 AC 71 ms
73,600 KB
testcase_22 AC 70 ms
75,520 KB
testcase_23 AC 64 ms
68,736 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 157 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))!=0:
                USED[i-(5**j)]=1

print(ANS)
0