結果

問題 No.1486 ロボット
ユーザー paruf4paruf4
提出日時 2021-04-23 22:14:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 568 ms / 2,000 ms
コード長 641 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 34,176 KB
最終ジャッジ日時 2024-07-04 08:11:43
合計ジャッジ時間 3,543 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 32 ms
10,624 KB
testcase_03 AC 32 ms
10,624 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 32 ms
10,624 KB
testcase_06 AC 568 ms
34,176 KB
testcase_07 AC 563 ms
34,048 KB
testcase_08 AC 286 ms
22,528 KB
testcase_09 AC 32 ms
10,624 KB
testcase_10 AC 70 ms
12,416 KB
testcase_11 AC 70 ms
12,544 KB
testcase_12 AC 34 ms
10,752 KB
testcase_13 AC 32 ms
10,880 KB
testcase_14 AC 203 ms
17,396 KB
testcase_15 AC 67 ms
12,032 KB
testcase_16 AC 118 ms
14,208 KB
testcase_17 AC 113 ms
13,440 KB
testcase_18 AC 102 ms
13,824 KB
testcase_19 AC 56 ms
11,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

a, b, c, d, e = map(int, input().split())
x = a+b
y = c+d
cycle = x*y//gcd(x, y)

memo1 = [0]*cycle

pos = 0
for i in range(cycle//x):
    for j in range(a):
        memo1[pos] = 1
        pos += 1
    for j in range(b):
        pos += 1
memo2 = [0]*cycle
pos = 0
for i in range(cycle//y):
    for j in range(c):
        memo2[pos] = 1
        pos += 1
    for j in range(d):
        pos += 1

memo = [0]*cycle

for i in range(cycle):
    if memo1[i] == memo2[i] and memo1[i] == 1:
        memo[i] = 1

cnt = sum(memo)

q, r = divmod(e, cycle)
res = q*cnt
for i in range(r):
    if memo[i]:
        res += 1
print(res)
0