結果

問題 No.350 d=vt
ユーザー Grenache
提出日時 2016-03-11 22:29:53
言語 Java
(openjdk 23)
結果
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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

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