結果

問題 No.1994 Confusing Name
ユーザー H20H20
提出日時 2022-07-01 21:49:43
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 335 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 1,060,664 KB
最終ジャッジ日時 2024-11-26 04:43:01
合計ジャッジ時間 52,367 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
71,936 KB
testcase_01 MLE -
testcase_02 AC 64 ms
74,400 KB
testcase_03 MLE -
testcase_04 AC 57 ms
70,052 KB
testcase_05 MLE -
testcase_06 AC 142 ms
111,852 KB
testcase_07 MLE -
testcase_08 AC 121 ms
104,656 KB
testcase_09 MLE -
testcase_10 AC 113 ms
96,928 KB
testcase_11 MLE -
testcase_12 TLE -
testcase_13 MLE -
testcase_14 TLE -
testcase_15 MLE -
testcase_16 TLE -
testcase_17 MLE -
testcase_18 TLE -
testcase_19 MLE -
testcase_20 TLE -
testcase_21 MLE -
testcase_22 AC 568 ms
233,748 KB
testcase_23 MLE -
testcase_24 TLE -
testcase_25 MLE -
testcase_26 AC 1,869 ms
440,884 KB
testcase_27 MLE -
testcase_28 TLE -
testcase_29 AC 456 ms
204,524 KB
testcase_30 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import string
import collections
N = int(input())
S = []
CA = collections.Counter()
for _ in range(N):
    S.append(input())
alphabets = list(string.ascii_lowercase)
for s in S:
    s = 'a'+s+'a'
    for i in range(1,len(s)-1):
        for a in alphabets:
            CA[s[:i]+a+s[i+1:]]+=1
for s in S:
    print(CA['a'+s+'a']-len(s))
0