結果

問題 No.3099 Parentheses Decomposition
ユーザー lam6er
提出日時 2025-04-15 20:58:35
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 460 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 67,608 KB
最終ジャッジ日時 2025-04-15 21:01:32
合計ジャッジ時間 2,773 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 4
other RE * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

T, S, D = map(int, input().split())
H = D / S
start = T
end = start + H

total = 0.0

k_min = math.floor((start - 30) / 24)
k_max = math.ceil((end - 18) / 24)

for k in range(k_min, k_max + 1):
    night_start = 18 + 24 * k
    night_end = 30 + 24 * k
    overlap_start = max(start, night_start)
    overlap_end = min(end, night_end)
    if overlap_start < overlap_end:
        total += overlap_end - overlap_start

print("{0:.15f}".format(total))
0