結果
問題 | No.1994 Confusing Name |
ユーザー | sasa8uyauya |
提出日時 | 2024-08-25 20:10:35 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 426 bytes |
コンパイル時間 | 299 ms |
コンパイル使用メモリ | 82,232 KB |
実行使用メモリ | 728,716 KB |
最終ジャッジ日時 | 2024-08-25 20:10:43 |
合計ジャッジ時間 | 6,970 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | AC | 53 ms
66,716 KB |
testcase_02 | AC | 53 ms
67,536 KB |
testcase_03 | AC | 36 ms
52,304 KB |
testcase_04 | AC | 38 ms
57,204 KB |
testcase_05 | AC | 195 ms
103,744 KB |
testcase_06 | AC | 364 ms
133,944 KB |
testcase_07 | AC | 113 ms
88,184 KB |
testcase_08 | AC | 269 ms
121,344 KB |
testcase_09 | AC | 371 ms
144,048 KB |
testcase_10 | AC | 201 ms
104,344 KB |
testcase_11 | AC | 210 ms
103,820 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 | -- | - |
ソースコード
n=int(input()) ss=[] d={} for i in range(n): s=list(input()) for j in range(len(s)): t=s[j] for k in range(26): s[j]=chr(k+ord("a")) if tuple(s) not in d: d[tuple(s)]=0 s[j]=t d[tuple(s)]+=1 ss+=[s] for i in range(n): s=ss[i] c=0 for j in range(len(s)): t=s[j] for k in range(26): s[j]=chr(k+ord("a")) c+=d[tuple(s)]*(chr(k+ord("a"))!=t) s[j]=t print(c)