結果

問題 No.350 d=vt
ユーザー tentententen
提出日時 2020-10-03 12:07:18
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 231 bytes
コンパイル時間 1,910 ms
コンパイル使用メモリ 71,728 KB
実行使用メモリ 58,136 KB
最終ジャッジ日時 2023-09-25 05:02:33
合計ジャッジ時間 5,088 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
55,976 KB
testcase_01 AC 136 ms
56,492 KB
testcase_02 AC 135 ms
57,932 KB
testcase_03 AC 137 ms
55,964 KB
testcase_04 AC 137 ms
55,976 KB
testcase_05 WA -
testcase_06 AC 139 ms
56,164 KB
testcase_07 AC 136 ms
55,884 KB
testcase_08 AC 134 ms
55,892 KB
testcase_09 AC 134 ms
56,064 KB
testcase_10 AC 137 ms
56,256 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int a = (int)(sc.nextDouble() * 10000);
		int b = sc.nextInt();
		System.out.println(a * b / 10000);
	}
}
0