結果

問題 No.9003 小数誤差テスト(テスト用)
ユーザー mits58mits58
提出日時 2016-07-02 22:14:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 244 bytes
コンパイル時間 2,207 ms
コンパイル使用メモリ 71,368 KB
実行使用メモリ 56,204 KB
最終ジャッジ日時 2023-09-20 21:20:33
合計ジャッジ時間 3,276 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
55,840 KB
testcase_01 AC 134 ms
55,892 KB
testcase_02 AC 134 ms
56,032 KB
testcase_03 AC 135 ms
55,796 KB
testcase_04 AC 138 ms
56,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		while(sc.hasNext()){
			double n=sc.nextDouble();
			System.out.println("decimal");
			System.out.println(n);
		}
	}
}
0