結果

問題 No.9003 小数誤差テスト(テスト用)
ユーザー _k_a_n_i__k_a_n_i_
提出日時 2015-04-23 17:25:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 5,000 ms
コード長 472 bytes
コンパイル時間 1,968 ms
コンパイル使用メモリ 71,856 KB
実行使用メモリ 56,104 KB
最終ジャッジ日時 2023-09-20 21:16:19
合計ジャッジ時間 3,036 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
55,708 KB
testcase_01 AC 133 ms
56,016 KB
testcase_02 AC 132 ms
56,104 KB
testcase_03 AC 133 ms
54,768 KB
testcase_04 AC 139 ms
55,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main
{
    private final static Main main = new Main();

    public static void main(String[] args)
    {
        long l = System.currentTimeMillis();
        main.solve();
        //System.out.println("処理時間:" + (System.currentTimeMillis() - l));
    }

    private void solve()
    {
        Scanner sc = new Scanner(System.in);
        System.out.println("decimal");
        System.out.println(sc.nextFloat());
    }
}
0