結果
問題 | No.350 d=vt |
ユーザー | mits58 |
提出日時 | 2016-05-05 13:30:31 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 144 ms / 2,000 ms |
コード長 | 364 bytes |
コンパイル時間 | 2,186 ms |
コンパイル使用メモリ | 74,468 KB |
実行使用メモリ | 41,708 KB |
最終ジャッジ日時 | 2024-10-05 04:49:15 |
合計ジャッジ時間 | 5,361 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 12 |
ソースコード
import java.math.BigDecimal; import java.util.Scanner; public class Main{ public static void main(String[] args){ Scanner sc=new Scanner(System.in); while(sc.hasNext()){ BigDecimal v=sc.nextBigDecimal(); BigDecimal t=sc.nextBigDecimal(); System.out.println(v.multiply(t).toBigInteger().intValue()); } } }