結果
問題 | No.350 d=vt |
ユーザー | Tsukasa_Type |
提出日時 | 2018-02-22 15:09:43 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 120 ms / 2,000 ms |
コード長 | 264 bytes |
コンパイル時間 | 1,708 ms |
コンパイル使用メモリ | 74,392 KB |
実行使用メモリ | 54,372 KB |
最終ジャッジ日時 | 2024-10-05 05:54:34 |
合計ジャッジ時間 | 4,072 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 12 |
ソースコード
import java.util.*; public class Main { static Scanner sc = new Scanner(System.in); public static void main(String[] args) { String v = sc.next(); int t = sc.nextInt(); v = v.substring(2,v.length()); System.out.println(Integer.parseInt(v)*t/10000); } }