結果

問題 No.2178 Payable Magic Items
ユーザー KazunKazun
提出日時 2023-01-06 22:11:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 293 ms / 4,000 ms
コード長 491 bytes
コンパイル時間 562 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 84,168 KB
最終ジャッジ日時 2024-12-14 17:58:58
合計ジャッジ時間 5,576 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,872 KB
testcase_01 AC 38 ms
52,440 KB
testcase_02 AC 39 ms
52,708 KB
testcase_03 AC 144 ms
62,996 KB
testcase_04 AC 38 ms
52,708 KB
testcase_05 AC 144 ms
62,784 KB
testcase_06 AC 143 ms
62,848 KB
testcase_07 AC 39 ms
53,316 KB
testcase_08 AC 143 ms
61,440 KB
testcase_09 AC 61 ms
59,712 KB
testcase_10 AC 43 ms
58,784 KB
testcase_11 AC 291 ms
83,704 KB
testcase_12 AC 292 ms
83,580 KB
testcase_13 AC 291 ms
83,960 KB
testcase_14 AC 291 ms
83,732 KB
testcase_15 AC 293 ms
84,168 KB
testcase_16 AC 290 ms
83,896 KB
testcase_17 AC 208 ms
80,564 KB
testcase_18 AC 67 ms
69,216 KB
testcase_19 AC 117 ms
77,944 KB
testcase_20 AC 46 ms
60,044 KB
testcase_21 AC 67 ms
69,280 KB
testcase_22 AC 67 ms
69,612 KB
testcase_23 AC 49 ms
61,280 KB
testcase_24 AC 256 ms
82,128 KB
testcase_25 AC 188 ms
79,960 KB
testcase_26 AC 126 ms
78,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    N,K=map(int,input().split())
    S=[None]*N
    for i in range(N):
        S[i]=int("4"*K,5)-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):
        if X[S[i]]>=2:
            ans+=1
    return ans

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