結果
| 問題 |
No.1453 手助け
|
| コンテスト | |
| ユーザー |
da_ab
|
| 提出日時 | 2021-03-31 21:25:44 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 32 ms / 2,000 ms |
| コード長 | 551 bytes |
| コンパイル時間 | 358 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 10,752 KB |
| 最終ジャッジ日時 | 2024-12-15 15:02:29 |
| 合計ジャッジ時間 | 1,889 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 21 |
ソースコード
# 1453 : 手助け
from sys import stdin
candiesPerPerson,inviting,noComing,price,borderPrice=list(map(int,stdin.readline().split()))
numComing=inviting-noComing
cost=0
candies=candiesPerPerson*numComing
if candies!=0:
cost+=price
priceIm1=price
for i in range(2,candies+1):
if i%10!=0:
cost+=priceIm1
else:
if priceIm1>=borderPrice:
cost+=(priceIm1-borderPrice)
priceIm1-=borderPrice
else:
cost+=priceIm1
else:
cost=0
print(cost)
da_ab