結果

問題 No.2590 100000 Days of Christmas
ユーザー Nikkuniku029Nikkuniku029
提出日時 2023-12-18 17:04:43
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 299 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 93,388 KB
最終ジャッジ日時 2024-09-27 08:24:51
合計ジャッジ時間 4,337 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
58,752 KB
testcase_01 AC 44 ms
53,632 KB
testcase_02 AC 46 ms
53,664 KB
testcase_03 AC 44 ms
53,376 KB
testcase_04 AC 48 ms
53,376 KB
testcase_05 AC 52 ms
61,056 KB
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

N = int(input())
d = defaultdict(int)
pre = defaultdict(int)
for i in range(N):
    S = input()
    for k, v in pre.items():
        d[k] += v
    pre[S] += i + 1
    d[S] += i + 1
ans = [(k, v) for k, v in d.items()]
ans.sort()
for k, v in ans:
    print(v, k)
0