結果

問題 No.2178 Payable Magic Items
ユーザー 👑 KazunKazun
提出日時 2023-01-06 22:06:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 588 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 84,480 KB
最終ジャッジ日時 2024-05-08 13:33:29
合計ジャッジ時間 5,463 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 146 ms
61,440 KB
testcase_04 AC 52 ms
51,968 KB
testcase_05 WA -
testcase_06 AC 146 ms
61,440 KB
testcase_07 AC 39 ms
51,968 KB
testcase_08 WA -
testcase_09 AC 62 ms
58,624 KB
testcase_10 AC 43 ms
58,368 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 307 ms
84,480 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 129 ms
78,336 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 78 ms
71,808 KB
testcase_23 AC 57 ms
62,976 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 134 ms
78,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    N,K=map(int,input().split())
    S=[None]*N
    for i in range(N):
        S[i]=int(input(),5)

    X=[0]*pow(5,K)
    for i in range(N):
        X[S[i]]+=1

    for d in range(K):
        t=pow(5,d)
        for i in range(pow(5,K)):
            if i//(5*t)==(i+t)//(5*t):
                X[i+t]+=X[i]

    ans=0
    for i in range(N):
        A=S[i]; B=0
        for d in range(K):
            r=A%5
            B=5*B+(r-1 if r!=0 else 0)
        if A!=B and X[B]!=0:
            ans+=1
    return ans

#==================================================
print(solve())
0