結果

問題 No.1486 ロボット
ユーザー AAAR SalmonAAAR Salmon
提出日時 2021-05-15 11:20:05
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 267 ms / 2,000 ms
コード長 403 bytes
コンパイル時間 499 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 18,564 KB
最終ジャッジ日時 2024-10-02 17:58:24
合計ジャッジ時間 2,358 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 247 ms
18,564 KB
testcase_07 AC 267 ms
18,456 KB
testcase_08 AC 141 ms
14,580 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 45 ms
11,136 KB
testcase_11 AC 45 ms
11,264 KB
testcase_12 AC 31 ms
10,624 KB
testcase_13 AC 30 ms
10,624 KB
testcase_14 AC 93 ms
13,824 KB
testcase_15 AC 44 ms
11,136 KB
testcase_16 AC 66 ms
12,416 KB
testcase_17 AC 56 ms
12,032 KB
testcase_18 AC 60 ms
11,776 KB
testcase_19 AC 40 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import reduce
from math import gcd


A,B,C,D,E = map(int,input().split())
T = (A + B) * (C + D) // gcd(A + B, C + D)
dp = [0] * T
for t in range(0, T, A + B):
	dp[t] += 1
for t in range(A, T, A + B):
	dp[t] -= 1
for t in range(0, T, C + D):
	dp[t] += 1
for t in range(C, T, C + D):
	dp[t] -= 1
for t in range(T - 1):
	dp[t + 1] += dp[t]

print(E // T * dp.count(2) + dp[:E % T].count(2))
0