結果

問題 No.1486 ロボット
ユーザー monnumonnu
提出日時 2021-04-23 22:38:10
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 380 ms / 2,000 ms
コード長 204 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 18,516 KB
最終ジャッジ日時 2024-07-04 08:23:22
合計ジャッジ時間 3,716 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B,C,D,E=map(int,input().split())
T=(A+B)*(C+D)
time=[0]*T
for t in range(T):
    if t%(A+B)<A and t%(C+D)<C:
        time[t]=1
x=sum(time)
ans=x*(E//T)
for  t in range(E%T):
    ans+=time[t]
print(ans)
0