結果
問題 | No.1279 Array Battle |
ユーザー | KisaragiEffective |
提出日時 | 2020-11-09 16:45:33 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 207 bytes |
コンパイル時間 | 42 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 12,288 KB |
最終ジャッジ日時 | 2024-07-22 16:14:46 |
合計ジャッジ時間 | 2,257 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 74 ms
12,160 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 75 ms
12,288 KB |
testcase_04 | AC | 78 ms
12,288 KB |
testcase_05 | AC | 76 ms
12,288 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 74 ms
12,032 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
コンパイルメッセージ
Syntax OK
ソースコード
A=gets.split.map(&:to_i).permutation B=gets.split.map(&:to_i) PROFIT = A.map{|as| [as ,B]}.map{|x| x[0].zip(x[1])}.map{|ab_ab| ab_ab.map{|ab| [ab.inject(:-), 0].max}}.map(&:sum) puts PROFIT.count(PROFIT.max)