結果

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

ソースコード

diff #

from math import gcd

A, B, C, D, E = map(int, input().split())

x = (A + B) * (C + D) // gcd(A + B, C + D)
y = ([1] * A + [0] * B) * (x//(A+B))
z = ([1] * C + [0] * D) * (x//(C+D))

c = 0
for i in range(x):
    if y[i] == 1 and z[i] == 1:
        c += 1

result = E // x * c
for i in range(E % x):
    if y[i] == 1 and z[i] == 1:
        result += 1

print(result)
0