結果

問題 No.1994 Confusing Name
ユーザー ygd.ygd.
提出日時 2022-07-01 21:58:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,009 ms / 2,000 ms
コード長 1,060 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 84,776 KB
最終ジャッジ日時 2024-05-04 16:23:53
合計ジャッジ時間 15,332 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
59,904 KB
testcase_01 AC 39 ms
60,160 KB
testcase_02 AC 41 ms
60,544 KB
testcase_03 AC 35 ms
52,096 KB
testcase_04 AC 35 ms
51,968 KB
testcase_05 AC 60 ms
71,680 KB
testcase_06 AC 74 ms
75,520 KB
testcase_07 AC 52 ms
66,432 KB
testcase_08 AC 73 ms
75,648 KB
testcase_09 AC 76 ms
75,520 KB
testcase_10 AC 63 ms
73,344 KB
testcase_11 AC 62 ms
72,192 KB
testcase_12 AC 762 ms
84,460 KB
testcase_13 AC 1,009 ms
84,736 KB
testcase_14 AC 928 ms
83,968 KB
testcase_15 AC 914 ms
82,048 KB
testcase_16 AC 754 ms
80,768 KB
testcase_17 AC 923 ms
81,408 KB
testcase_18 AC 1,009 ms
83,968 KB
testcase_19 AC 980 ms
84,480 KB
testcase_20 AC 994 ms
84,776 KB
testcase_21 AC 225 ms
77,184 KB
testcase_22 AC 148 ms
76,544 KB
testcase_23 AC 820 ms
84,440 KB
testcase_24 AC 813 ms
84,352 KB
testcase_25 AC 570 ms
80,384 KB
testcase_26 AC 297 ms
77,952 KB
testcase_27 AC 744 ms
83,968 KB
testcase_28 AC 624 ms
81,024 KB
testcase_29 AC 132 ms
76,908 KB
testcase_30 AC 695 ms
81,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#input = sys.stdin.readline
#input = sys.stdin.buffer.readline #文字列はダメ
#sys.setrecursionlimit(1000000)
#import bisect
#import itertools
#import random
#from heapq import heapify, heappop, heappush
#from collections import defaultdict 
#from collections import deque
#import copy
#import math
#from functools import lru_cache
#@lru_cache(maxsize=None)
#MOD = pow(10,9) + 7
#MOD = 998244353
#dx = [1,0,-1,0]
#dy = [0,1,0,-1]
#dx8 = [1,1,0,-1,-1,-1,0,1]
#dy8 = [0,1,1,1,0,-1,-1,-1]

def main():
    N = int(input())
    S = set([])
    for i in range(N):
        S.add(str(input()))

    ans = []
    for s in S:
        temp = 0
        for i in range(len(s)):
            for j in range(26):
                if s[i] == chr(j+97): continue
                ns = s[:i] + chr(j+97) + s[i+1:]
                # print(ns)
                if ns in S:
                    # print(s,ns,i,j,chr(j+97))
                    temp += 1
        # print("temp",temp)
        ans.append(temp)
    print(*ans,sep="\n")
if __name__ == '__main__':
    main()
0