結果

問題 No.1486 ロボット
ユーザー KudeKude
提出日時 2021-04-23 21:46:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 428 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 94,720 KB
最終ジャッジ日時 2024-07-04 07:50:54
合計ジャッジ時間 2,205 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b, c, d, e = map(int, input().split())
l = (a + b) * (c + d)
s1 = [False] * l
s2 = [False] * l
for i in range(l // (a + b)):
    for j in range(a):
        s1[i * (a + b) + j] = True

for i in range(l // (c + d)):
    for j in range(c):
        s2[i * (c + d) + j] = True

cnt_loop = sum(b1 and b2 for b1, b2 in zip(s1, s2))
q, r = divmod(e, l)
ans = q * cnt_loop + sum(b1 and b2 for b1, b2 in zip(s1[:r], s2[:r]))
print(ans)
0