結果
問題 | No.586 ダブルブッキング |
ユーザー | Yuki Kawabe |
提出日時 | 2018-08-24 16:11:25 |
言語 | Ruby (3.3.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 436 bytes |
コンパイル時間 | 181 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 12,544 KB |
最終ジャッジ日時 | 2024-06-22 05:50:10 |
合計ジャッジ時間 | 1,999 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
コンパイルメッセージ
Main.rb:5: warning: assigned but unused variable - booking_num Syntax OK
ソースコード
all_data = readlines our_price = all_data[0].to_i other_price = all_data[1].to_i each_loss = our_price + other_price booking_num = all_data[2].to_i booked_rooms = all_data.shift(2) duplicated_booked_rooms = booked_rooms.group_by{|i| i}.reject{|k,v| v.one?}.keys duplicated_booked_rooms.each do |room_num| num_of_duplicating = booked_rooms.count(room_num) total_loss += (num_of_duplicating - 1) * each_loss end print total_loss