結果
問題 | No.350 d=vt |
ユーザー | tenten |
提出日時 | 2020-10-03 12:06:05 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 229 bytes |
コンパイル時間 | 1,720 ms |
コンパイル使用メモリ | 73,916 KB |
実行使用メモリ | 54,448 KB |
最終ジャッジ日時 | 2024-07-18 04:17:29 |
合計ジャッジ時間 | 4,374 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 134 ms
54,388 KB |
testcase_04 | AC | 138 ms
54,448 KB |
testcase_05 | AC | 127 ms
53,592 KB |
testcase_06 | AC | 130 ms
54,288 KB |
testcase_07 | AC | 128 ms
54,328 KB |
testcase_08 | AC | 123 ms
53,492 KB |
testcase_09 | WA | - |
testcase_10 | AC | 127 ms
53,416 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
ソースコード
import java.util.*; public class Main { public static void main (String[] args) { Scanner sc = new Scanner(System.in); int a = (int)(sc.nextDouble() * 1000); int b = sc.nextInt(); System.out.println(a * b / 1000); } }