結果

問題 No.1994 Confusing Name
ユーザー H20H20
提出日時 2022-07-01 21:54:20
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 380 bytes
コンパイル時間 520 ms
コンパイル使用メモリ 82,068 KB
実行使用メモリ 157,736 KB
最終ジャッジ日時 2024-11-26 04:49:45
合計ジャッジ時間 50,966 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
59,088 KB
testcase_01 AC 36 ms
134,416 KB
testcase_02 AC 34 ms
59,064 KB
testcase_03 AC 36 ms
133,472 KB
testcase_04 AC 34 ms
59,464 KB
testcase_05 AC 53 ms
148,124 KB
testcase_06 AC 71 ms
82,672 KB
testcase_07 AC 48 ms
143,744 KB
testcase_08 AC 59 ms
80,680 KB
testcase_09 AC 70 ms
154,996 KB
testcase_10 AC 55 ms
75,836 KB
testcase_11 AC 55 ms
148,528 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 1,155 ms
157,736 KB
testcase_22 AC 353 ms
83,648 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 1,954 ms
84,580 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 243 ms
76,680 KB
testcase_30 TLE -
権限があれば一括ダウンロードができます

ソースコード

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