結果

問題 No.1994 Confusing Name
ユーザー lilictakalilictaka
提出日時 2022-07-01 22:30:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,004 ms / 2,000 ms
コード長 467 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 258,180 KB
最終ジャッジ日時 2024-11-26 05:52:42
合計ジャッジ時間 14,775 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,760 KB
testcase_01 AC 43 ms
53,888 KB
testcase_02 AC 45 ms
53,888 KB
testcase_03 AC 43 ms
53,632 KB
testcase_04 AC 42 ms
53,504 KB
testcase_05 AC 81 ms
74,368 KB
testcase_06 AC 103 ms
77,056 KB
testcase_07 AC 73 ms
70,272 KB
testcase_08 AC 101 ms
77,824 KB
testcase_09 AC 105 ms
77,440 KB
testcase_10 AC 91 ms
77,696 KB
testcase_11 AC 79 ms
74,496 KB
testcase_12 AC 691 ms
197,376 KB
testcase_13 AC 906 ms
246,848 KB
testcase_14 AC 884 ms
249,600 KB
testcase_15 AC 757 ms
215,336 KB
testcase_16 AC 674 ms
196,796 KB
testcase_17 AC 741 ms
213,928 KB
testcase_18 AC 958 ms
252,588 KB
testcase_19 AC 1,004 ms
253,684 KB
testcase_20 AC 979 ms
258,180 KB
testcase_21 AC 226 ms
102,912 KB
testcase_22 AC 155 ms
86,584 KB
testcase_23 AC 839 ms
223,744 KB
testcase_24 AC 787 ms
215,800 KB
testcase_25 AC 504 ms
162,492 KB
testcase_26 AC 286 ms
113,928 KB
testcase_27 AC 733 ms
204,704 KB
testcase_28 AC 555 ms
171,112 KB
testcase_29 AC 150 ms
86,656 KB
testcase_30 AC 595 ms
178,808 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