結果

問題 No.350 d=vt
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-17 01:50:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 282 bytes
コンパイル時間 3,650 ms
コンパイル使用メモリ 74,868 KB
実行使用メモリ 54,080 KB
最終ジャッジ日時 2024-10-05 05:50:13
合計ジャッジ時間 5,347 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
54,024 KB
testcase_01 AC 114 ms
54,080 KB
testcase_02 AC 114 ms
53,756 KB
testcase_03 AC 113 ms
53,748 KB
testcase_04 AC 104 ms
52,492 KB
testcase_05 AC 115 ms
53,828 KB
testcase_06 AC 113 ms
54,064 KB
testcase_07 AC 109 ms
53,820 KB
testcase_08 AC 113 ms
53,812 KB
testcase_09 AC 102 ms
52,496 KB
testcase_10 AC 102 ms
52,504 KB
testcase_11 AC 114 ms
53,976 KB
testcase_12 AC 114 ms
53,968 KB
testcase_13 AC 101 ms
52,784 KB
testcase_14 AC 98 ms
52,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No350 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String v = sc.next();
		int t = sc.nextInt();
		v = v.substring(2,v.length());
		int V = Integer.parseInt(v);
		System.out.println(V * t /10000);
	}
}
0