結果

問題 No.1486 ロボット
ユーザー ああいいああいい
提出日時 2022-03-15 22:58:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 288 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 63,644 KB
最終ジャッジ日時 2024-09-22 15:18:43
合計ジャッジ時間 2,061 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,000 KB
testcase_01 AC 38 ms
52,772 KB
testcase_02 AC 37 ms
52,124 KB
testcase_03 AC 37 ms
52,700 KB
testcase_04 AC 37 ms
53,360 KB
testcase_05 AC 36 ms
53,100 KB
testcase_06 AC 51 ms
60,276 KB
testcase_07 AC 52 ms
61,500 KB
testcase_08 AC 47 ms
60,240 KB
testcase_09 AC 44 ms
59,752 KB
testcase_10 AC 60 ms
63,100 KB
testcase_11 AC 60 ms
63,644 KB
testcase_12 AC 53 ms
62,812 KB
testcase_13 AC 44 ms
59,320 KB
testcase_14 AC 52 ms
63,508 KB
testcase_15 AC 50 ms
62,508 KB
testcase_16 AC 48 ms
62,504 KB
testcase_17 AC 53 ms
63,216 KB
testcase_18 AC 53 ms
62,892 KB
testcase_19 AC 49 ms
62,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b,c,d,e = map(int,input().split())
u = (a + b) * (c + d)
q = 0
for i in range(u + 1):
    if 0 < i % (a + b) <= a and 0 < i % (c + d) <= c:
        q += 1
ans = q * (e // u)
r = e % u
for i in range(r+1):
    if 0 < i % (a + b) <= a and 0 < i % (c + d) <= c:
        ans += 1
print(ans)
0