結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,004 KB
testcase_01 AC 38 ms
52,832 KB
testcase_02 AC 37 ms
52,948 KB
testcase_03 AC 143 ms
62,168 KB
testcase_04 AC 39 ms
53,056 KB
testcase_05 AC 144 ms
62,232 KB
testcase_06 AC 145 ms
61,892 KB
testcase_07 AC 39 ms
52,532 KB
testcase_08 AC 142 ms
62,220 KB
testcase_09 AC 60 ms
59,120 KB
testcase_10 AC 43 ms
58,352 KB
testcase_11 AC 290 ms
83,576 KB
testcase_12 AC 291 ms
83,752 KB
testcase_13 AC 292 ms
83,816 KB
testcase_14 AC 287 ms
84,000 KB
testcase_15 AC 292 ms
83,640 KB
testcase_16 AC 291 ms
83,704 KB
testcase_17 AC 206 ms
80,688 KB
testcase_18 AC 66 ms
70,508 KB
testcase_19 AC 117 ms
78,008 KB
testcase_20 AC 47 ms
61,460 KB
testcase_21 AC 64 ms
69,340 KB
testcase_22 AC 68 ms
69,952 KB
testcase_23 AC 48 ms
60,604 KB
testcase_24 AC 250 ms
82,480 KB
testcase_25 AC 184 ms
79,392 KB
testcase_26 AC 125 ms
78,444 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