結果
問題 | No.1994 Confusing Name |
ユーザー | 👑 rin204 |
提出日時 | 2022-07-01 21:28:55 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 545 bytes |
コンパイル時間 | 246 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 876,216 KB |
最終ジャッジ日時 | 2024-11-26 03:52:24 |
合計ジャッジ時間 | 48,105 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
64,672 KB |
testcase_01 | AC | 44 ms
402,028 KB |
testcase_02 | AC | 45 ms
64,512 KB |
testcase_03 | MLE | - |
testcase_04 | AC | 39 ms
59,044 KB |
testcase_05 | MLE | - |
testcase_06 | AC | 111 ms
100,532 KB |
testcase_07 | MLE | - |
testcase_08 | AC | 102 ms
97,024 KB |
testcase_09 | MLE | - |
testcase_10 | AC | 79 ms
86,820 KB |
testcase_11 | MLE | - |
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 | 762 ms
231,084 KB |
testcase_22 | AC | 373 ms
143,128 KB |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | AC | 1,050 ms
256,296 KB |
testcase_27 | TLE | - |
testcase_28 | TLE | - |
testcase_29 | AC | 324 ms
143,848 KB |
testcase_30 | MLE | - |
ソースコード
n = int(input()) cnt = {} def f(S): lst = [ord(s) - 96 for s in S] tot = 0 for l in lst: tot *= 26 tot += l times = 1 for l in lst[::-1]: tot -= times * l for j in range(1, 27): if j == l: continue tot += times * j cnt[tot] = cnt.get(tot, 0) + 1 tot -= times * j tot += times * l times *= 26 return tot lst = [] for _ in range(n): S = input() lst.append(f(S)) for s in lst: print(cnt.get(s, 0))