結果

問題 No.350 d=vt
ユーザー GrenacheGrenache
提出日時 2016-03-11 22:29:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 340 bytes
コンパイル時間 2,768 ms
コンパイル使用メモリ 78,120 KB
実行使用メモリ 54,320 KB
最終ジャッジ日時 2024-10-05 03:49:23
合計ジャッジ時間 5,236 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
53,952 KB
testcase_01 AC 114 ms
53,892 KB
testcase_02 AC 108 ms
53,404 KB
testcase_03 AC 117 ms
53,868 KB
testcase_04 AC 103 ms
52,708 KB
testcase_05 AC 118 ms
54,320 KB
testcase_06 AC 122 ms
53,700 KB
testcase_07 AC 117 ms
53,820 KB
testcase_08 AC 116 ms
54,040 KB
testcase_09 AC 113 ms
54,064 KB
testcase_10 AC 103 ms
53,080 KB
testcase_11 AC 111 ms
54,012 KB
testcase_12 AC 102 ms
52,652 KB
testcase_13 AC 115 ms
53,756 KB
testcase_14 AC 104 ms
52,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder350 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        String s = sc.next();
        int t = sc.nextInt();

        int v = Integer.parseInt(s.substring(2, 6));

        System.out.println(v * t / 10000);

        sc.close();
    }
}
0