結果

問題 No.9003 小数誤差テスト(テスト用)
ユーザー chiyochiyo
提出日時 2015-05-22 03:56:35
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 570 bytes
コンパイル時間 3,595 ms
コンパイル使用メモリ 74,796 KB
実行使用メモリ 41,280 KB
最終ジャッジ日時 2024-07-06 16:05:16
合計ジャッジ時間 4,264 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
40,984 KB
testcase_01 AC 87 ms
40,280 KB
testcase_02 AC 97 ms
40,928 KB
testcase_03 AC 107 ms
41,084 KB
testcase_04 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class test9002 {

  public static void main(String[] args) {

    Scanner userInput = new Scanner(System.in);

    String inputStr = userInput.next();

    boolean result = isNumber(inputStr);

    userInput.close();

    if(result == true){
      System.out.println("decimal");
       System.out.println(Integer.parseInt(inputStr) + 0.0001);
    }
  }

  static boolean isNumber(String num) {
    try {
        Integer.parseInt(num);
        return true;
        } catch (NumberFormatException e) {
        return false;
    }
  }

}
0