結果

問題 No.9003 小数誤差テスト(テスト用)
ユーザー _k_a_n_i__k_a_n_i_
提出日時 2015-04-23 17:25:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 117 ms / 5,000 ms
コード長 472 bytes
コンパイル時間 1,752 ms
コンパイル使用メモリ 79,128 KB
実行使用メモリ 41,444 KB
最終ジャッジ日時 2024-07-06 16:04:22
合計ジャッジ時間 2,788 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
40,088 KB
testcase_01 AC 117 ms
41,388 KB
testcase_02 AC 106 ms
40,676 KB
testcase_03 AC 107 ms
41,240 KB
testcase_04 AC 109 ms
41,444 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