結果

問題 No.586 ダブルブッキング
ユーザー amatakasapamatakasap
提出日時 2017-11-14 17:40:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 30 ms / 2,000 ms
コード長 692 bytes
コンパイル時間 116 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-05-03 21:32:50
合計ジャッジ時間 865 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 25 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

yuki_hotel_price = int(input())
transfer_hotel_price = int(input())
booking_num = int(input())
booking_room_numbers = []
transferred_room_numbers = []
for i in range(booking_num):
  booking_room_numbers.append(int(input()))

loss_amount = 0
for num in booking_room_numbers:
  # 振替済みなら何もしない
  if num in transferred_room_numbers:
    continue

  # 重複予約
  double_booking_num = booking_room_numbers.count(num)
  if double_booking_num >= 2:
    # 損失費用の加算
    loss_amount += (double_booking_num - 1)*yuki_hotel_price + (double_booking_num - 1)*transfer_hotel_price

    # 振替済みに追加
    transferred_room_numbers.append(num)
print(loss_amount)
0