結果

問題 No.1486 ロボット
ユーザー O2MTO2MT
提出日時 2021-05-06 00:54:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 335 bytes
コンパイル時間 409 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 62,592 KB
最終ジャッジ日時 2024-09-13 17:22:27
合計ジャッジ時間 2,265 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 38 ms
51,840 KB
testcase_05 AC 38 ms
52,396 KB
testcase_06 AC 58 ms
59,520 KB
testcase_07 AC 58 ms
60,160 KB
testcase_08 AC 47 ms
59,008 KB
testcase_09 AC 38 ms
51,840 KB
testcase_10 AC 47 ms
59,776 KB
testcase_11 AC 45 ms
59,648 KB
testcase_12 AC 46 ms
59,392 KB
testcase_13 AC 38 ms
52,480 KB
testcase_14 AC 52 ms
61,824 KB
testcase_15 AC 52 ms
62,208 KB
testcase_16 AC 52 ms
61,952 KB
testcase_17 AC 53 ms
62,208 KB
testcase_18 AC 53 ms
62,592 KB
testcase_19 AC 52 ms
61,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
A,B,C,D,E = map(int,input().split())
time,count = 1,1
F = (A+B)*(C+D)//gcd((A+B),(C+D))
while time < F:
  if 0 <= time%(A+B) < A and 0 <= time%(C+D) < C:
    count += 1
  time += 1
ans = count*(E//F)
time = 0
while time < (E%F):
  if 0 <= time%(A+B) < A and 0 <= time%(C+D) < C:
    ans += 1
  time += 1
print(ans)
0