import java.util.Scanner; class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int T = sc.nextInt(); // 出発時刻 int S = sc.nextInt(); // 移動速度 int D = sc.nextInt(); // 移動距離 double cautionHours = (double)D / (double)S; // 通常運転でかかる時間 if (cautionHours < 5.0) { // 夜間運転時間が 0 時間の場合 System.out.println(cautionHours); } else { // 夜間運転時間がある場合 double nightHours = (double)(24 - T + 5) % 24; // 夜間の時間 double cautionNightHours = Math.max(nightHours - cautionHours, 0); // 夜間のうち気をつけて運転しなければならない時間 System.out.println(cautionHours + cautionNightHours); } } }