結果

問題 No.1994 Confusing Name
ユーザー scrappyscrappy
提出日時 2022-07-08 16:07:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 546 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 59,108 KB
最終ジャッジ日時 2024-06-08 10:54:08
合計ジャッジ時間 15,105 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 433 ms
43,340 KB
testcase_01 AC 429 ms
43,472 KB
testcase_02 AC 430 ms
43,476 KB
testcase_03 AC 473 ms
43,344 KB
testcase_04 AC 434 ms
43,348 KB
testcase_05 AC 442 ms
43,604 KB
testcase_06 AC 465 ms
43,476 KB
testcase_07 AC 446 ms
43,476 KB
testcase_08 AC 457 ms
43,476 KB
testcase_09 AC 463 ms
43,480 KB
testcase_10 AC 460 ms
43,472 KB
testcase_11 AC 438 ms
43,476 KB
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 TLE -
testcase_21 AC 918 ms
44,028 KB
testcase_22 AC 656 ms
43,472 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 1,745 ms
51,044 KB
testcase_26 AC 1,063 ms
45,536 KB
testcase_27 TLE -
testcase_28 AC 1,833 ms
51,820 KB
testcase_29 AC 601 ms
43,604 KB
testcase_30 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

LEN = 10

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

    nn[ii] += len(ii)-1

for n in nn:
     print(n)
0