結果

問題 No.1994 Confusing Name
ユーザー 👑 rin204rin204
提出日時 2022-07-01 21:39:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 420 ms / 2,000 ms
コード長 653 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 88,416 KB
最終ジャッジ日時 2024-05-04 15:57:07
合計ジャッジ時間 8,129 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
59,648 KB
testcase_01 AC 42 ms
59,136 KB
testcase_02 AC 42 ms
59,776 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 36 ms
51,872 KB
testcase_05 AC 73 ms
70,912 KB
testcase_06 AC 77 ms
73,216 KB
testcase_07 AC 68 ms
69,632 KB
testcase_08 AC 76 ms
71,912 KB
testcase_09 AC 75 ms
72,064 KB
testcase_10 AC 74 ms
70,144 KB
testcase_11 AC 73 ms
69,504 KB
testcase_12 AC 352 ms
87,552 KB
testcase_13 AC 420 ms
88,356 KB
testcase_14 AC 387 ms
88,128 KB
testcase_15 AC 369 ms
85,760 KB
testcase_16 AC 371 ms
84,320 KB
testcase_17 AC 368 ms
85,860 KB
testcase_18 AC 404 ms
88,184 KB
testcase_19 AC 404 ms
88,196 KB
testcase_20 AC 412 ms
88,416 KB
testcase_21 AC 132 ms
79,344 KB
testcase_22 AC 119 ms
77,608 KB
testcase_23 AC 387 ms
87,420 KB
testcase_24 AC 360 ms
87,128 KB
testcase_25 AC 252 ms
82,672 KB
testcase_26 AC 163 ms
80,152 KB
testcase_27 AC 358 ms
85,840 KB
testcase_28 AC 348 ms
84,352 KB
testcase_29 AC 105 ms
77,184 KB
testcase_30 AC 358 ms
85,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
T = []
se = set()
for _ in range(n):
    S = input()
    lst = [ord(s) - 96 for s in S]
    tot = 0
    for l in lst:
        tot *= 26
        tot += l
    se.add(tot)
    T.append(lst)

for lst in T:
    ans = 0
    times = 1
    tot = 0
    for l in lst:
        tot *= 26
        tot += l
    se.add(tot)
    for l in lst[::-1]:
        tot -= times * l
        for j in range(1, 27):
            if j == l:
                pass
            else:
                tot += times * j
                if tot in se:
                    ans += 1
                tot -= times * j
        tot += times * l
        times *= 26
    print(ans)
0