結果

問題 No.2008 Super Worker
ユーザー simansiman
提出日時 2022-07-16 16:50:36
言語 Ruby
(3.4.1)
結果
AC  
実行時間 425 ms / 2,000 ms
コード長 287 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 38,528 KB
最終ジャッジ日時 2024-06-28 16:36:46
合計ジャッジ時間 8,881 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
12,032 KB
testcase_01 AC 85 ms
12,160 KB
testcase_02 AC 89 ms
12,160 KB
testcase_03 AC 85 ms
11,904 KB
testcase_04 AC 85 ms
12,032 KB
testcase_05 AC 85 ms
11,904 KB
testcase_06 AC 85 ms
12,160 KB
testcase_07 AC 86 ms
12,160 KB
testcase_08 AC 85 ms
12,160 KB
testcase_09 AC 85 ms
12,160 KB
testcase_10 AC 85 ms
12,032 KB
testcase_11 AC 84 ms
11,904 KB
testcase_12 AC 85 ms
12,032 KB
testcase_13 AC 86 ms
11,904 KB
testcase_14 AC 88 ms
12,032 KB
testcase_15 AC 86 ms
11,904 KB
testcase_16 AC 87 ms
12,032 KB
testcase_17 AC 86 ms
11,904 KB
testcase_18 AC 85 ms
12,160 KB
testcase_19 AC 83 ms
12,160 KB
testcase_20 AC 84 ms
12,288 KB
testcase_21 AC 84 ms
11,904 KB
testcase_22 AC 83 ms
12,032 KB
testcase_23 AC 405 ms
37,556 KB
testcase_24 AC 405 ms
37,716 KB
testcase_25 AC 405 ms
37,600 KB
testcase_26 AC 408 ms
37,720 KB
testcase_27 AC 406 ms
37,720 KB
testcase_28 AC 408 ms
36,096 KB
testcase_29 AC 400 ms
36,096 KB
testcase_30 AC 399 ms
35,968 KB
testcase_31 AC 415 ms
36,096 KB
testcase_32 AC 425 ms
35,968 KB
testcase_33 AC 335 ms
38,528 KB
testcase_34 AC 425 ms
36,096 KB
testcase_35 AC 324 ms
35,072 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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| (b - 1.0) / a }
C.reverse!

ans = 0
level = 1

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

puts ans
0