結果

問題 No.1994 Confusing Name
ユーザー H20H20
提出日時 2022-07-01 21:54:20
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 380 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 76,548 KB
最終ジャッジ日時 2024-05-04 16:18:39
合計ジャッジ時間 5,007 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
59,896 KB
testcase_01 AC 42 ms
52,224 KB
testcase_02 AC 42 ms
51,840 KB
testcase_03 AC 42 ms
51,840 KB
testcase_04 AC 41 ms
51,712 KB
testcase_05 AC 70 ms
66,432 KB
testcase_06 AC 96 ms
76,548 KB
testcase_07 AC 62 ms
62,848 KB
testcase_08 AC 83 ms
72,960 KB
testcase_09 AC 95 ms
76,160 KB
testcase_10 AC 74 ms
68,224 KB
testcase_11 AC 70 ms
67,072 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = []
for _ in range(N):
    S.append(input())
ANS = [0]*N
for i in range(N):
    for j in range(i+1,N):
        if len(S[i])==len(S[j]):
            v = 0
            for k in range(len(S[i])):
                if S[i][k]!=S[j][k]:
                    v+=1
            if v==1:
                ANS[i]+=1
                ANS[j]+=1
for ans in ANS:
    print(ans)

0