結果

問題 No.9003 小数誤差テスト(テスト用)
ユーザー tsunatama5tsunatama5
提出日時 2015-01-12 15:04:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 54 ms / 5,000 ms
コード長 343 bytes
コンパイル時間 2,136 ms
コンパイル使用メモリ 74,068 KB
実行使用メモリ 37,548 KB
最終ジャッジ日時 2024-07-06 16:01:17
合計ジャッジ時間 3,078 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,548 KB
testcase_01 AC 54 ms
37,548 KB
testcase_02 AC 54 ms
37,080 KB
testcase_03 AC 54 ms
37,456 KB
testcase_04 AC 53 ms
37,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;

class Test9002 {
	public static void main(String[] args) throws IOException {
		
		BufferedReader r = new BufferedReader(new InputStreamReader(System.in), 1);
		String s = r.readLine();
		double N = Double.parseDouble(s);
		
		System.out.println("decimal");
		double y;
		y = N * (1 + 0.0001);
		System.out.println(y);
	}
}
0