結果

問題 No.1486 ロボット
ユーザー TomoyarnTomoyarn
提出日時 2021-12-27 17:18:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 579 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 86,020 KB
最終ジャッジ日時 2024-09-25 11:01:41
合計ジャッジ時間 1,738 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,464 KB
testcase_01 AC 38 ms
53,172 KB
testcase_02 AC 38 ms
52,632 KB
testcase_03 AC 36 ms
52,864 KB
testcase_04 AC 37 ms
53,832 KB
testcase_05 AC 35 ms
53,448 KB
testcase_06 AC 57 ms
78,792 KB
testcase_07 AC 61 ms
86,020 KB
testcase_08 AC 51 ms
69,336 KB
testcase_09 AC 37 ms
53,912 KB
testcase_10 AC 45 ms
61,964 KB
testcase_11 AC 46 ms
61,964 KB
testcase_12 AC 43 ms
59,808 KB
testcase_13 AC 38 ms
53,272 KB
testcase_14 AC 54 ms
70,160 KB
testcase_15 AC 47 ms
63,220 KB
testcase_16 AC 49 ms
66,764 KB
testcase_17 AC 50 ms
66,120 KB
testcase_18 AC 51 ms
65,200 KB
testcase_19 AC 47 ms
63,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
M1, S1, M2, S2, N = map(int, input().split())

T1 = M1 + S1
T2 = M2 + S2

def my_lcm(x, y):
    return (x * y) // math.gcd(x, y)

LCD = my_lcm(T1, T2)

dp = [0] * (LCD * 2)

i = 0
while i <= LCD:
    for j in range(M1):
        dp[i] += 1
        i += 1
    for j in range(S1):
        i += 1

i = 0
while i <= LCD:
    for j in range(M2):
        dp[i] += 1
        i += 1
    for j in range(S2):
        i += 1


if LCD < N:
    cnt = dp[:LCD].count(2)
    mod = N % LCD
    ans = cnt * (N // LCD) + dp[:mod].count(2)
else:
    ans = dp[:N].count(2)

print(ans)



0