結果
| 問題 | No.2590 100000 Days of Christmas |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-11-23 15:17:03 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 365 ms / 2,000 ms |
| コード長 | 228 bytes |
| 記録 | |
| コンパイル時間 | 397 ms |
| コンパイル使用メモリ | 20,832 KB |
| 実行使用メモリ | 33,876 KB |
| 最終ジャッジ日時 | 2026-04-14 04:33:37 |
| 合計ジャッジ時間 | 6,213 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 22 |
ソースコード
from collections import defaultdict
presents = defaultdict(int)
N = int(input())
for i in range(N):
present = input()
presents[present] += (i + 1) * (N - i)
for p, c in sorted(presents.items()):
print(f'{c} {p}')