結果

問題 No.350 d=vt
ユーザー htensaihtensai
提出日時 2019-11-21 16:50:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 344 bytes
コンパイル時間 2,107 ms
コンパイル使用メモリ 74,088 KB
実行使用メモリ 41,556 KB
最終ジャッジ日時 2024-10-10 05:25:45
合計ジャッジ時間 4,882 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,180 KB
testcase_01 AC 133 ms
41,552 KB
testcase_02 AC 129 ms
41,096 KB
testcase_03 AC 131 ms
41,384 KB
testcase_04 AC 130 ms
40,872 KB
testcase_05 AC 116 ms
41,380 KB
testcase_06 AC 128 ms
41,036 KB
testcase_07 AC 131 ms
41,556 KB
testcase_08 AC 131 ms
41,320 KB
testcase_09 AC 127 ms
39,828 KB
testcase_10 AC 122 ms
40,272 KB
testcase_11 AC 131 ms
41,228 KB
testcase_12 AC 133 ms
40,904 KB
testcase_13 AC 122 ms
40,296 KB
testcase_14 AC 132 ms
41,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
 	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		char[] arr = sc.next().toCharArray();
		int speed = 0;
		for (int i = 2; i < arr.length; i++) {
		    speed *= 10;
		    speed += arr[i] - '0';
		}
		int t = sc.nextInt();
		System.out.println(speed * t / 10000);
	}
}
0