結果

問題 No.1486 ロボット
ユーザー H20H20
提出日時 2021-04-23 21:32:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 259 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 69,468 KB
最終ジャッジ日時 2024-07-04 07:41:15
合計ジャッジ時間 1,773 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

import math 

#最大公約数
def lcm(x, y):
    return (x * y) // math.gcd(x, y)

A,B,C,D,E = map(int, input().split())
lc = lcm(A+B,C+D)
L = [0]*lc
for i in range(lc):
    if i%(A+B)<A and i%(C+D)<C:
        L[i]=1
c = sum(L)
print((E//lc)*c+sum(L[:E%lc]))
0