結果

問題 No.350 d=vt
ユーザー mits58mits58
提出日時 2016-05-05 13:20:36
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 290 bytes
コンパイル時間 2,149 ms
コンパイル使用メモリ 74,116 KB
実行使用メモリ 54,968 KB
最終ジャッジ日時 2024-04-15 10:29:59
合計ジャッジ時間 5,273 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 151 ms
54,184 KB
testcase_01 AC 150 ms
54,264 KB
testcase_02 AC 150 ms
54,476 KB
testcase_03 AC 155 ms
54,968 KB
testcase_04 AC 152 ms
54,260 KB
testcase_05 WA -
testcase_06 AC 171 ms
54,228 KB
testcase_07 AC 152 ms
54,088 KB
testcase_08 AC 151 ms
54,484 KB
testcase_09 AC 156 ms
54,588 KB
testcase_10 AC 150 ms
54,412 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
権限があれば一括ダウンロードができます

ソースコード

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