結果

問題 No.350 d=vt
ユーザー tentententen
提出日時 2020-10-03 12:09:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 244 bytes
コンパイル時間 1,968 ms
コンパイル使用メモリ 71,292 KB
実行使用メモリ 56,132 KB
最終ジャッジ日時 2023-09-25 05:02:47
合計ジャッジ時間 4,647 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
55,728 KB
testcase_01 AC 123 ms
55,964 KB
testcase_02 AC 128 ms
55,572 KB
testcase_03 AC 121 ms
55,696 KB
testcase_04 AC 122 ms
55,676 KB
testcase_05 AC 121 ms
55,896 KB
testcase_06 AC 123 ms
55,688 KB
testcase_07 AC 123 ms
56,124 KB
testcase_08 AC 122 ms
56,132 KB
testcase_09 AC 121 ms
55,684 KB
testcase_10 AC 124 ms
55,604 KB
testcase_11 AC 123 ms
55,916 KB
testcase_12 AC 125 ms
55,600 KB
testcase_13 AC 123 ms
55,920 KB
testcase_14 AC 121 ms
53,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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