結果
問題 | No.1453 手助け |
ユーザー |
![]() |
提出日時 | 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 stdincandiesPerPerson,inviting,noComing,price,borderPrice=list(map(int,stdin.readline().split()))numComing=inviting-noComingcost=0candies=candiesPerPerson*numComingif candies!=0:cost+=pricepriceIm1=pricefor i in range(2,candies+1):if i%10!=0:cost+=priceIm1else:if priceIm1>=borderPrice:cost+=(priceIm1-borderPrice)priceIm1-=borderPriceelse:cost+=priceIm1else:cost=0print(cost)