結果

問題 No.1994 Confusing Name
ユーザー scrappyscrappy
提出日時 2022-07-08 15:51:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 638 bytes
コンパイル時間 114 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 59,276 KB
最終ジャッジ日時 2024-06-08 10:21:08
合計ジャッジ時間 13,370 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 457 ms
49,728 KB
testcase_01 AC 432 ms
44,224 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 443 ms
44,088 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

# No.1994 Confusing Name
import sys, time, random, string
import numpy as np

LEN = 10

#sys.stdin = open(r"C:\Users\takah\Downloads\7564-testcase\test_in\3_hand01.txt")

N = int(input())
S = [input() for i in range(N)]

nn = np.full((N), 0)

for i in range(LEN):
    T = [s[:i]+s[i+1:] if i<len(s) else '' for s in S]
    U = sorted(zip(T, S, range(N)))

    t0 = ''
    ii = []
    for t, s, i in U:
        if t == '':
            continue

        if t == t0:
            ii += [i]
        else:
            nn[ii] += len(ii)-1
            ii = [i]
            t0 = t
    if ii:
        nn[ii] += len(ii)-1

for n in nn:
    print(n)
0