結果

問題 No.1486 ロボット
ユーザー 👑 rin204rin204
提出日時 2021-08-05 17:56:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 322 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 68,480 KB
最終ジャッジ日時 2024-09-16 15:21:42
合計ジャッジ時間 1,823 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 36 ms
52,096 KB
testcase_03 AC 37 ms
52,432 KB
testcase_04 AC 36 ms
51,968 KB
testcase_05 AC 37 ms
52,096 KB
testcase_06 AC 67 ms
68,480 KB
testcase_07 AC 70 ms
68,096 KB
testcase_08 AC 52 ms
63,232 KB
testcase_09 AC 39 ms
51,712 KB
testcase_10 AC 46 ms
60,672 KB
testcase_11 AC 48 ms
60,928 KB
testcase_12 AC 45 ms
60,416 KB
testcase_13 AC 40 ms
51,840 KB
testcase_14 AC 54 ms
63,744 KB
testcase_15 AC 48 ms
61,952 KB
testcase_16 AC 50 ms
62,848 KB
testcase_17 AC 52 ms
62,080 KB
testcase_18 AC 50 ms
62,336 KB
testcase_19 AC 48 ms
61,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

a, b, c, d, e = map(int, input().split())
loop = (a + b) * (c + d) // gcd(a + b, c + d)
tmp = [False] * loop
for i in range(loop):
    if i % (a + b) < a and i % (c + d) < c:
        tmp[i] = True

ans = e // loop * tmp.count(True)
for i in range(e % loop):
    if tmp[i]:
        ans += 1
print(ans)
0