結果

問題 No.1994 Confusing Name
ユーザー lilictakalilictaka
提出日時 2022-07-01 22:30:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 988 ms / 2,000 ms
コード長 467 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 258,308 KB
最終ジャッジ日時 2024-05-04 16:49:23
合計ジャッジ時間 14,520 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,760 KB
testcase_01 AC 39 ms
53,888 KB
testcase_02 AC 41 ms
54,016 KB
testcase_03 AC 39 ms
53,760 KB
testcase_04 AC 37 ms
53,632 KB
testcase_05 AC 67 ms
74,420 KB
testcase_06 AC 98 ms
77,568 KB
testcase_07 AC 75 ms
70,400 KB
testcase_08 AC 102 ms
77,568 KB
testcase_09 AC 102 ms
77,740 KB
testcase_10 AC 89 ms
77,312 KB
testcase_11 AC 78 ms
74,752 KB
testcase_12 AC 693 ms
197,632 KB
testcase_13 AC 862 ms
246,720 KB
testcase_14 AC 855 ms
249,600 KB
testcase_15 AC 739 ms
215,596 KB
testcase_16 AC 652 ms
197,172 KB
testcase_17 AC 750 ms
214,056 KB
testcase_18 AC 988 ms
252,592 KB
testcase_19 AC 955 ms
254,072 KB
testcase_20 AC 988 ms
258,308 KB
testcase_21 AC 226 ms
103,168 KB
testcase_22 AC 151 ms
86,700 KB
testcase_23 AC 884 ms
223,616 KB
testcase_24 AC 790 ms
215,928 KB
testcase_25 AC 511 ms
162,752 KB
testcase_26 AC 282 ms
114,400 KB
testcase_27 AC 724 ms
204,692 KB
testcase_28 AC 558 ms
171,108 KB
testcase_29 AC 137 ms
86,656 KB
testcase_30 AC 630 ms
179,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
N = int(input())
cnt = [defaultdict(int) for _ in range(10)]
def f(l,S):
    rev = []
    for i in range(len(S)):
        if i == l:
            continue
        rev.append(S[i])
    return ''.join(rev)
board = []     
for i in range(N):
    S = list(input())
    for l in range(len(S)):
        cnt[l][f(l,S)] += 1
        board.append((i,l,f(l,S)))
ANS = [0] * N
for i,l,s in board:
    ANS[i] += cnt[l][s]-1
print(*ANS,sep='\n')
0