結果

問題 No.1994 Confusing Name
ユーザー MasKoaTSMasKoaTS
提出日時 2023-10-31 23:13:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 472 ms / 2,000 ms
コード長 579 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 91,268 KB
最終ジャッジ日時 2024-09-25 17:45:17
合計ジャッジ時間 8,654 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
60,288 KB
testcase_01 AC 44 ms
59,264 KB
testcase_02 AC 43 ms
59,136 KB
testcase_03 AC 37 ms
51,584 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 58 ms
64,768 KB
testcase_06 AC 62 ms
66,176 KB
testcase_07 AC 55 ms
63,488 KB
testcase_08 AC 60 ms
65,536 KB
testcase_09 AC 63 ms
66,176 KB
testcase_10 AC 63 ms
65,664 KB
testcase_11 AC 60 ms
64,256 KB
testcase_12 AC 360 ms
87,936 KB
testcase_13 AC 434 ms
91,136 KB
testcase_14 AC 408 ms
90,768 KB
testcase_15 AC 472 ms
86,144 KB
testcase_16 AC 407 ms
85,888 KB
testcase_17 AC 444 ms
86,252 KB
testcase_18 AC 421 ms
90,904 KB
testcase_19 AC 410 ms
91,012 KB
testcase_20 AC 428 ms
91,268 KB
testcase_21 AC 138 ms
78,720 KB
testcase_22 AC 109 ms
77,184 KB
testcase_23 AC 378 ms
89,860 KB
testcase_24 AC 356 ms
89,128 KB
testcase_25 AC 307 ms
85,380 KB
testcase_26 AC 159 ms
79,696 KB
testcase_27 AC 343 ms
87,716 KB
testcase_28 AC 342 ms
86,016 KB
testcase_29 AC 85 ms
72,736 KB
testcase_30 AC 372 ms
86,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
ctoi = { chr(i + ord('a')) : i + 1 for i in range(26) }

n = int(input())
s = []
st = set([])
for _ in [0] * n:
    num = 0
    lis = []
    b = 1
    for c in input()[:-1]:
        lis.append(ctoi[c])
        num += b * ctoi[c]
        b *= 27
    lis.append(num)
    s.append(lis)
    st.add(num)
    
for lis in s:
    num = lis.pop()
    ans = 0
    b = 1
    for x in lis:
        for j in range(1, 27):
            if(j == x or num + b * (j - x) not in st):
                continue
            ans += 1
        b *= 27
    print(ans)
0