結果

問題 No.1279 Array Battle
ユーザー okuramasafumiokuramasafumi
提出日時 2020-11-11 22:27:46
言語 Ruby
(3.3.0)
結果
AC  
実行時間 591 ms / 2,000 ms
コード長 330 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 18,560 KB
最終ジャッジ日時 2024-07-22 18:52:52
合計ジャッジ時間 5,419 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
12,160 KB
testcase_01 AC 94 ms
12,160 KB
testcase_02 AC 92 ms
12,288 KB
testcase_03 AC 92 ms
12,160 KB
testcase_04 AC 91 ms
12,288 KB
testcase_05 AC 93 ms
12,160 KB
testcase_06 AC 92 ms
12,160 KB
testcase_07 AC 90 ms
12,160 KB
testcase_08 AC 90 ms
12,288 KB
testcase_09 AC 91 ms
12,160 KB
testcase_10 AC 91 ms
12,288 KB
testcase_11 AC 92 ms
12,288 KB
testcase_12 AC 96 ms
12,288 KB
testcase_13 AC 145 ms
12,544 KB
testcase_14 AC 143 ms
12,416 KB
testcase_15 AC 586 ms
18,560 KB
testcase_16 AC 586 ms
18,432 KB
testcase_17 AC 588 ms
18,432 KB
testcase_18 AC 591 ms
18,432 KB
testcase_19 AC 586 ms
18,432 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

_, a, b = 3.times.map { gets }
a = a.split(' ').map(&:to_i)
b = b.split(' ').map(&:to_i)
scores = a.permutation.each_with_object([]) do |array, ss|
  score = 0
  array.size.times do |i|
    diff = array[i] - b[i]
    score += diff if diff >= 0
  end
  ss << score
end
max_score = scores.max
puts(scores.count {|s| s == max_score})
0