結果

問題 No.8099 夜の道路は気をつけて運転しなければならない
ユーザー Maeda
提出日時 2025-09-11 13:52:02
言語 Java
(openjdk 23)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 256 bytes
コンパイル時間 2,099 ms
コンパイル使用メモリ 76,560 KB
実行使用メモリ 47,232 KB
最終ジャッジ日時 2025-09-11 13:52:08
合計ジャッジ時間 5,333 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 14
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {
    public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		double t = scan.nextDouble();
		double s = scan.nextDouble();
		double d = scan.nextDouble();
		System.out.println(d/s);
    }
}
0