結果

問題 No.350 d=vt
ユーザー mits58
提出日時 2016-05-05 13:20:36
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 290 bytes
コンパイル時間 2,203 ms
コンパイル使用メモリ 73,732 KB
実行使用メモリ 41,700 KB
最終ジャッジ日時 2024-10-05 04:48:53
合計ジャッジ時間 4,535 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 8 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
    public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        while(sc.hasNext()){
        	double v=sc.nextDouble();
        	double t=sc.nextDouble();
        	System.out.println((int)(v*t));
        }
    }
}
0