結果

問題 No.1708 Quality of Contest
ユーザー 小野寺健小野寺健
提出日時 2021-10-30 18:08:59
言語 Ruby
(3.3.0)
結果
AC  
実行時間 826 ms / 2,000 ms
コード長 402 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 47,396 KB
最終ジャッジ日時 2024-10-07 13:49:25
合計ジャッジ時間 15,354 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
12,160 KB
testcase_01 AC 93 ms
12,288 KB
testcase_02 AC 90 ms
12,032 KB
testcase_03 AC 108 ms
12,416 KB
testcase_04 AC 106 ms
12,416 KB
testcase_05 AC 107 ms
12,416 KB
testcase_06 AC 107 ms
12,288 KB
testcase_07 AC 107 ms
12,416 KB
testcase_08 AC 100 ms
12,160 KB
testcase_09 AC 803 ms
47,396 KB
testcase_10 AC 541 ms
30,720 KB
testcase_11 AC 744 ms
35,328 KB
testcase_12 AC 789 ms
37,376 KB
testcase_13 AC 681 ms
34,048 KB
testcase_14 AC 734 ms
38,656 KB
testcase_15 AC 775 ms
41,088 KB
testcase_16 AC 826 ms
40,960 KB
testcase_17 AC 716 ms
37,632 KB
testcase_18 AC 725 ms
37,760 KB
testcase_19 AC 776 ms
39,808 KB
testcase_20 AC 714 ms
37,504 KB
testcase_21 AC 780 ms
39,040 KB
testcase_22 AC 787 ms
38,656 KB
testcase_23 AC 778 ms
40,960 KB
testcase_24 AC 552 ms
30,848 KB
testcase_25 AC 555 ms
30,720 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:13: warning: assigned but unused variable - k
Syntax OK

ソースコード

diff #

N, M, X = gets.split(" ").map{|s| s.to_i}

A = []

Max = Hash.new([-Float::INFINITY, -1])

N.times {
	a, b = gets.split(" ").map{|s| s.to_i}
	A << a
	Max[b] = [a, A.length-1] if a > Max[b][0]
}

k = gets.to_i
c = gets.split(" ").map{|s| s.to_i}

Max.values.each {|a, i|
	A[i] += X
}

A.sort!

cnt = [0]

1.upto(c.max) {|i|
	cnt << cnt[-1] + A[N-i]
}

total = 0
c.each {|i|
	total += cnt[i]
}
puts total
0