結果

問題 No.2590 100000 Days of Christmas
ユーザー tkykwtnbtkykwtnb
提出日時 2024-03-30 17:57:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 529 ms / 2,000 ms
コード長 212 bytes
コンパイル時間 415 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,100 KB
最終ジャッジ日時 2024-09-30 17:37:55
合計ジャッジ時間 6,891 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,880 KB
testcase_01 AC 33 ms
10,752 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 32 ms
10,752 KB
testcase_06 AC 453 ms
32,100 KB
testcase_07 AC 236 ms
17,792 KB
testcase_08 AC 472 ms
31,568 KB
testcase_09 AC 237 ms
13,312 KB
testcase_10 AC 26 ms
10,624 KB
testcase_11 AC 26 ms
10,752 KB
testcase_12 AC 26 ms
10,624 KB
testcase_13 AC 27 ms
10,624 KB
testcase_14 AC 25 ms
10,752 KB
testcase_15 AC 24 ms
10,752 KB
testcase_16 AC 25 ms
10,624 KB
testcase_17 AC 25 ms
10,752 KB
testcase_18 AC 23 ms
10,624 KB
testcase_19 AC 24 ms
10,752 KB
testcase_20 AC 499 ms
31,568 KB
testcase_21 AC 527 ms
31,564 KB
testcase_22 AC 438 ms
28,844 KB
testcase_23 AC 529 ms
31,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
S=[input() for _ in range(N)]
from collections import defaultdict
ans=defaultdict(int)
for i,s in enumerate(S,1):
    ans[s]+=i*(N-i+1)
ans=sorted(list(ans.items()))
for k,v in ans:
    print(v,k)
0