結果

問題 No.1486 ロボット
ユーザー otsunekootsuneko
提出日時 2021-04-23 22:41:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 523 ms / 2,000 ms
コード長 853 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 18,432 KB
最終ジャッジ日時 2024-07-04 08:26:10
合計ジャッジ時間 2,303 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 523 ms
18,432 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 28 ms
10,624 KB
testcase_10 AC 60 ms
11,264 KB
testcase_11 AC 62 ms
11,264 KB
testcase_12 AC 31 ms
10,880 KB
testcase_13 AC 29 ms
10,752 KB
testcase_14 AC 164 ms
13,824 KB
testcase_15 AC 57 ms
11,264 KB
testcase_16 AC 97 ms
12,416 KB
testcase_17 AC 82 ms
12,288 KB
testcase_18 AC 88 ms
11,776 KB
testcase_19 AC 48 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def gcd(a,b):
    if b == 0:
        return a
    else:
        return gcd(b,a%b)

def lcm(a, b):
    return a * b // gcd (a, b)

A,B,C,D,E = map(int,input().split())
n = lcm(A+B,C+D)
end = min(n,E)
robot = [False]*end
flag1 = flag2 = False
cnt1 = B
cnt2 = D
for i in range(end):
    if flag1:
        if cnt1%A == 0:
            flag1 = False
            cnt1 -= A
    else:
        if cnt1%B == 0:
            flag1 = True
            cnt1 -= B
    if flag2:
        if cnt2%C == 0:
            flag2 = False
            cnt2 -= C
    else:
        if cnt2%D == 0:
            flag2 = True
            cnt2 -= D
    if flag1 and flag2:
        robot[i] = True
    cnt1 += 1
    cnt2 += 1

ans = robot.count(True)
if n < E:
    ans *= E//n
    remain = E%n
    ans += robot[:remain].count(True)

print(ans)
0