結果

問題 No.1486 ロボット
ユーザー Super SolenoidSuper Solenoid
提出日時 2021-04-30 21:56:19
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 673 ms / 2,000 ms
コード長 510 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 44,336 KB
最終ジャッジ日時 2024-07-19 01:21:42
合計ジャッジ時間 11,500 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 450 ms
44,072 KB
testcase_01 AC 450 ms
43,948 KB
testcase_02 AC 456 ms
43,824 KB
testcase_03 AC 456 ms
43,816 KB
testcase_04 AC 443 ms
44,328 KB
testcase_05 AC 437 ms
43,816 KB
testcase_06 AC 458 ms
43,944 KB
testcase_07 AC 673 ms
44,076 KB
testcase_08 AC 438 ms
44,072 KB
testcase_09 AC 444 ms
43,820 KB
testcase_10 AC 463 ms
44,208 KB
testcase_11 AC 466 ms
44,076 KB
testcase_12 AC 440 ms
43,948 KB
testcase_13 AC 437 ms
44,200 KB
testcase_14 AC 520 ms
44,336 KB
testcase_15 AC 459 ms
44,204 KB
testcase_16 AC 483 ms
43,948 KB
testcase_17 AC 486 ms
43,944 KB
testcase_18 AC 466 ms
44,204 KB
testcase_19 AC 448 ms
43,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
from numpy import floor
A, B, C, D, E = map(int, input().split())

n = A + B
m = C + D
L = int(n*m/gcd(n, m))
y = int(floor(E/L))
z = E - y*L
  
i = 0
j = 0
l = 0
if E < L:
    X = E + 1
else:
    X = L + 1

if z > 0:
    for i in range(1, z + 1):
        if 0 < i % n <= A and 0 < i % m <= C:
            j += 1
        else:
            None
else:
    None

for k in range(i + 1, X):
    if 0 < k % n <= A and 0 < k % m <= C:
        l += 1
    else:
        None
    
print(j + y*(j+l))
0