結果

問題 No.2590 100000 Days of Christmas
ユーザー lloyzlloyz
提出日時 2023-12-19 20:06:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 392 ms / 2,000 ms
コード長 251 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 96,892 KB
最終ジャッジ日時 2024-09-27 08:59:25
合計ジャッジ時間 5,028 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
55,572 KB
testcase_01 AC 41 ms
54,524 KB
testcase_02 AC 39 ms
54,556 KB
testcase_03 AC 42 ms
53,828 KB
testcase_04 AC 39 ms
53,928 KB
testcase_05 AC 44 ms
54,180 KB
testcase_06 AC 226 ms
96,892 KB
testcase_07 AC 108 ms
76,520 KB
testcase_08 AC 392 ms
95,020 KB
testcase_09 AC 113 ms
76,536 KB
testcase_10 AC 43 ms
54,212 KB
testcase_11 AC 39 ms
54,728 KB
testcase_12 AC 40 ms
54,072 KB
testcase_13 AC 41 ms
54,492 KB
testcase_14 AC 41 ms
54,648 KB
testcase_15 AC 40 ms
54,700 KB
testcase_16 AC 40 ms
54,676 KB
testcase_17 AC 39 ms
54,708 KB
testcase_18 AC 40 ms
54,936 KB
testcase_19 AC 39 ms
54,064 KB
testcase_20 AC 379 ms
95,576 KB
testcase_21 AC 368 ms
95,468 KB
testcase_22 AC 361 ms
96,472 KB
testcase_23 AC 381 ms
95,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

n = int(input())
counter = defaultdict(int)
for i in range(n):
    s = input()
    counter[s] += (i + 1) * (n - i)
L = [(k, v) for k, v in counter.items()]
L.sort(key=lambda x: x[0])
for k, v in L:
    print(v, k)
0