結果

問題 No.9003 小数誤差テスト(テスト用)
ユーザー mits58mits58
提出日時 2016-07-02 22:14:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 112 ms / 5,000 ms
コード長 244 bytes
コンパイル時間 1,773 ms
コンパイル使用メモリ 74,024 KB
実行使用メモリ 41,404 KB
最終ジャッジ日時 2024-07-06 16:08:17
合計ジャッジ時間 2,628 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,404 KB
testcase_01 AC 111 ms
41,304 KB
testcase_02 AC 112 ms
41,396 KB
testcase_03 AC 101 ms
40,932 KB
testcase_04 AC 109 ms
40,932 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