結果

問題 No.2008 Super Worker
ユーザー simansiman
提出日時 2022-07-16 16:48:35
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 277 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 128,772 KB
最終ジャッジ日時 2024-06-28 16:34:30
合計ジャッジ時間 7,288 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
17,664 KB
testcase_01 AC 83 ms
12,032 KB
testcase_02 AC 89 ms
12,032 KB
testcase_03 AC 84 ms
12,032 KB
testcase_04 AC 84 ms
12,160 KB
testcase_05 AC 85 ms
12,160 KB
testcase_06 AC 83 ms
12,160 KB
testcase_07 AC 82 ms
12,032 KB
testcase_08 AC 84 ms
11,904 KB
testcase_09 AC 86 ms
11,904 KB
testcase_10 AC 86 ms
12,032 KB
testcase_11 AC 84 ms
12,160 KB
testcase_12 AC 85 ms
12,032 KB
testcase_13 AC 91 ms
13,568 KB
testcase_14 AC 94 ms
14,976 KB
testcase_15 AC 94 ms
13,568 KB
testcase_16 AC 92 ms
14,080 KB
testcase_17 AC 94 ms
14,592 KB
testcase_18 AC 121 ms
27,520 KB
testcase_19 AC 97 ms
16,640 KB
testcase_20 AC 100 ms
18,688 KB
testcase_21 AC 102 ms
18,560 KB
testcase_22 AC 98 ms
16,384 KB
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:6: warning: assigned but unused variable - a_sum
Main.rb:7: warning: assigned but unused variable - b_sum
Syntax OK

ソースコード

diff #

MOD = 10 ** 9 + 7
N = gets.to_i
A = gets.split.map(&:to_i)
B = gets.split.map(&:to_i)

a_sum = A.sum
b_sum = B.sum

C = A.zip(B)
C.sort_by! { |a, b| Rational(b - 1, a) }
C.reverse!

ans = 0
level = 1

C.each do |a, b|
  ans += level * a
  ans %= MOD
  level *= b
end

puts ans
0