結果

問題 No.2590 100000 Days of Christmas
ユーザー maguroflymagurofly
提出日時 2023-11-23 13:00:03
言語 Ruby
(3.4.1)
結果
AC  
実行時間 967 ms / 2,000 ms
コード長 192 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 32,408 KB
最終ジャッジ日時 2024-09-27 08:09:57
合計ジャッジ時間 9,901 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 22
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

presents = Hash.new(0)

N = gets.to_i
(0 ... N).each do |i|
    present = gets.chomp
    presents[present] += (i + 1) * (N - i)
end

presents.to_a.sort.each do |p, c|
    puts "#{c} #{p}"
end
0