結果

問題 No.1994 Confusing Name
ユーザー ShirotsumeShirotsume
提出日時 2022-07-01 22:12:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,177 ms / 2,000 ms
コード長 487 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 85,336 KB
最終ジャッジ日時 2024-05-04 16:34:11
合計ジャッジ時間 17,365 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
68,568 KB
testcase_01 AC 63 ms
66,648 KB
testcase_02 AC 64 ms
67,944 KB
testcase_03 AC 57 ms
64,852 KB
testcase_04 AC 52 ms
64,576 KB
testcase_05 AC 83 ms
78,024 KB
testcase_06 AC 100 ms
78,196 KB
testcase_07 AC 86 ms
77,944 KB
testcase_08 AC 86 ms
77,644 KB
testcase_09 AC 90 ms
77,648 KB
testcase_10 AC 83 ms
77,684 KB
testcase_11 AC 81 ms
77,592 KB
testcase_12 AC 949 ms
84,308 KB
testcase_13 AC 1,177 ms
84,496 KB
testcase_14 AC 1,023 ms
84,832 KB
testcase_15 AC 979 ms
82,856 KB
testcase_16 AC 863 ms
82,212 KB
testcase_17 AC 1,021 ms
82,852 KB
testcase_18 AC 1,094 ms
85,304 KB
testcase_19 AC 1,096 ms
85,336 KB
testcase_20 AC 1,092 ms
85,264 KB
testcase_21 AC 243 ms
79,236 KB
testcase_22 AC 165 ms
78,380 KB
testcase_23 AC 938 ms
84,856 KB
testcase_24 AC 899 ms
84,436 KB
testcase_25 AC 637 ms
81,348 KB
testcase_26 AC 325 ms
79,988 KB
testcase_27 AC 840 ms
84,092 KB
testcase_28 AC 707 ms
82,036 KB
testcase_29 AC 154 ms
78,192 KB
testcase_30 AC 791 ms
82,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
INF = 2 ** 63 - 1
mod = 998244353

import string

S = string.ascii_lowercase

n = ii()

s = [input() for _ in range(n)]

se = set(s)

for v in s:
    ans = set()
    for i in range(len(v)):
        for u in S:
            to = v[:i] + u + v[i + 1:]
            if to in se:
                ans.add(to)
    ans.discard(v)
    print(len(ans))
0