結果

問題 No.1233 割り切れない気持ち
ユーザー simansiman
提出日時 2020-10-20 10:23:14
言語 Ruby
(3.3.0)
結果
AC  
実行時間 540 ms / 3,153 ms
コード長 317 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 28,800 KB
最終ジャッジ日時 2024-07-21 08:17:25
合計ジャッジ時間 16,715 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
12,160 KB
testcase_01 AC 75 ms
12,160 KB
testcase_02 AC 73 ms
12,160 KB
testcase_03 AC 75 ms
12,160 KB
testcase_04 AC 79 ms
12,288 KB
testcase_05 AC 78 ms
12,288 KB
testcase_06 AC 78 ms
12,160 KB
testcase_07 AC 177 ms
16,128 KB
testcase_08 AC 271 ms
18,816 KB
testcase_09 AC 434 ms
25,472 KB
testcase_10 AC 437 ms
26,112 KB
testcase_11 AC 163 ms
15,872 KB
testcase_12 AC 507 ms
28,544 KB
testcase_13 AC 504 ms
28,416 KB
testcase_14 AC 497 ms
28,416 KB
testcase_15 AC 507 ms
28,288 KB
testcase_16 AC 514 ms
28,544 KB
testcase_17 AC 176 ms
25,600 KB
testcase_18 AC 489 ms
28,544 KB
testcase_19 AC 491 ms
28,672 KB
testcase_20 AC 170 ms
25,728 KB
testcase_21 AC 182 ms
25,216 KB
testcase_22 AC 174 ms
25,088 KB
testcase_23 AC 170 ms
25,088 KB
testcase_24 AC 172 ms
25,216 KB
testcase_25 AC 172 ms
25,088 KB
testcase_26 AC 172 ms
24,960 KB
testcase_27 AC 492 ms
28,032 KB
testcase_28 AC 489 ms
27,904 KB
testcase_29 AC 492 ms
27,904 KB
testcase_30 AC 500 ms
28,032 KB
testcase_31 AC 540 ms
27,776 KB
testcase_32 AC 493 ms
28,032 KB
testcase_33 AC 489 ms
27,904 KB
testcase_34 AC 489 ms
27,904 KB
testcase_35 AC 498 ms
27,776 KB
testcase_36 AC 501 ms
27,904 KB
testcase_37 AC 77 ms
12,160 KB
testcase_38 AC 490 ms
28,800 KB
testcase_39 AC 494 ms
28,160 KB
testcase_40 AC 489 ms
28,160 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

1.upto(M) 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