結果

問題 No.350 d=vt
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-02 17:31:57
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 341 bytes
コンパイル時間 3,803 ms
コンパイル使用メモリ 78,228 KB
実行使用メモリ 41,984 KB
最終ジャッジ日時 2024-10-05 04:55:40
合計ジャッジ時間 6,450 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 154 ms
41,984 KB
testcase_01 AC 154 ms
41,708 KB
testcase_02 AC 148 ms
41,592 KB
testcase_03 AC 149 ms
41,416 KB
testcase_04 AC 146 ms
41,804 KB
testcase_05 AC 147 ms
41,432 KB
testcase_06 AC 146 ms
41,744 KB
testcase_07 AC 148 ms
41,872 KB
testcase_08 AC 148 ms
41,464 KB
testcase_09 AC 149 ms
41,700 KB
testcase_10 AC 145 ms
41,668 KB
testcase_11 RE -
testcase_12 AC 148 ms
41,468 KB
testcase_13 AC 148 ms
41,440 KB
testcase_14 AC 149 ms
41,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise49{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    double v = sc.nextDouble() + 0.00001;
    int t = sc.nextInt();

    String numStr = String.valueOf(v);
    int vd = Integer.parseInt(numStr.substring(2, 6));

    System.out.println(vd * t / 10000);
  }
}
0