結果

問題 No.9003 小数誤差テスト(テスト用)
ユーザー yagi2yagi2
提出日時 2017-04-21 17:14:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 98 ms / 5,000 ms
コード長 303 bytes
コンパイル時間 1,591 ms
コンパイル使用メモリ 74,232 KB
実行使用メモリ 41,432 KB
最終ジャッジ日時 2024-07-06 16:09:01
合計ジャッジ時間 2,534 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
41,016 KB
testcase_01 AC 97 ms
41,236 KB
testcase_02 AC 88 ms
40,228 KB
testcase_03 AC 95 ms
41,172 KB
testcase_04 AC 98 ms
41,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        double N = Double.parseDouble(sc.next());
        double e = (0.0001 * N) + N;

        System.out.println("decimal");
        System.out.println(e);
    }
}
0