結果

問題 No.1453 手助け
ユーザー mono_0812mono_0812
提出日時 2021-03-31 21:55:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 760 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 12,032 KB
最終ジャッジ日時 2024-05-09 07:27:31
合計ジャッジ時間 2,198 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
11,776 KB
testcase_01 AC 38 ms
11,904 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 38 ms
11,904 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 38 ms
11,904 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 36 ms
11,904 KB
testcase_23 AC 37 ms
11,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect,collections,copy,heapq,itertools,math,string,sys,queue
from decimal import Decimal
def I(): return input()
def IS(): return input().split()
def II(): return int(input())
def IIS(): return map(int,input().split())
def LIIS(): return list(map(int,input().split()))
def ZER(N): return [False for _ in range(N)]
INF=float("inf")
MOD=10**9+7
#     V
#   / ̄ψ ̄\
#  | 合格祈願 |
#  |_____|
##############################################################################
a,b,c,d,e=IIS()
com=b-c
li=[0]*com
if com==0:
    print(0)
    exit()
li[0]=d
for i in range(1,com):
    x=li[i-1]
    if (i+1)%10!=0:
        li[i]=x
    elif (i+1)%10==0 and e<=x:
        li[i]=x-e
    else:
        li[i]=x
print(sum(li))
0