結果

問題 No.1233 割り切れない気持ち
ユーザー simansiman
提出日時 2020-10-20 11:21:43
言語 Ruby
(3.3.0)
結果
AC  
実行時間 612 ms / 3,153 ms
コード長 398 bytes
コンパイル時間 55 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 36,736 KB
最終ジャッジ日時 2024-07-21 08:19:07
合計ジャッジ時間 13,097 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
12,032 KB
testcase_01 AC 96 ms
12,288 KB
testcase_02 AC 92 ms
12,160 KB
testcase_03 AC 93 ms
12,160 KB
testcase_04 AC 97 ms
12,160 KB
testcase_05 AC 95 ms
12,160 KB
testcase_06 AC 95 ms
12,160 KB
testcase_07 AC 192 ms
17,664 KB
testcase_08 AC 268 ms
21,888 KB
testcase_09 AC 433 ms
30,848 KB
testcase_10 AC 449 ms
31,616 KB
testcase_11 AC 173 ms
17,152 KB
testcase_12 AC 538 ms
34,432 KB
testcase_13 AC 513 ms
34,432 KB
testcase_14 AC 515 ms
34,432 KB
testcase_15 AC 537 ms
34,560 KB
testcase_16 AC 534 ms
34,432 KB
testcase_17 AC 218 ms
27,520 KB
testcase_18 AC 612 ms
36,736 KB
testcase_19 AC 245 ms
30,592 KB
testcase_20 AC 212 ms
27,776 KB
testcase_21 AC 217 ms
27,136 KB
testcase_22 AC 216 ms
27,136 KB
testcase_23 AC 216 ms
27,136 KB
testcase_24 AC 216 ms
27,264 KB
testcase_25 AC 217 ms
27,136 KB
testcase_26 AC 218 ms
27,136 KB
testcase_27 AC 250 ms
29,952 KB
testcase_28 AC 248 ms
29,952 KB
testcase_29 AC 251 ms
30,080 KB
testcase_30 AC 249 ms
29,952 KB
testcase_31 AC 247 ms
29,824 KB
testcase_32 AC 249 ms
30,080 KB
testcase_33 AC 248 ms
30,080 KB
testcase_34 AC 247 ms
29,952 KB
testcase_35 AC 250 ms
29,952 KB
testcase_36 AC 250 ms
29,952 KB
testcase_37 AC 93 ms
12,160 KB
testcase_38 AC 266 ms
30,720 KB
testcase_39 AC 442 ms
33,280 KB
testcase_40 AC 443 ms
33,408 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
A = gets.split.map(&:to_i)
M = A.max
C = Array.new(M + 1, 0)
D = Array.new(M + 1, 0)

ans = 0

A.each do |a|
  C[a] += 1
  ans += a
end

ans *= N

M.downto(1) do |i|
  C[i - 1] += C[i]
end

=begin
1.upto(M) do |i|
  i.step(M, i) do |j|
    D[i] += C[j]
  end
end
=end

A.uniq.each do |i|
  i.step(M, i) do |j|
    D[i] += C[j]
  end
end

A.each do |a|
  ans -= D[a] * a
end

puts ans
0