結果

問題 No.9003 小数誤差テスト(テスト用)
ユーザー kenkooookenkoooo
提出日時 2015-03-14 03:25:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 41 ms / 5,000 ms
コード長 834 bytes
コンパイル時間 1,840 ms
コンパイル使用メモリ 71,132 KB
実行使用メモリ 49,108 KB
最終ジャッジ日時 2023-09-20 21:15:32
合計ジャッジ時間 2,538 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
48,920 KB
testcase_01 AC 41 ms
49,064 KB
testcase_02 AC 41 ms
48,936 KB
testcase_03 AC 41 ms
49,020 KB
testcase_04 AC 41 ms
49,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;

public class Main {

	public static void main(String[] args) {
		int a = nextInt();
		System.out.println("decimal");
		System.out.println((double) a + 0.000001);

	}

	static int gcd(int a, int b) {
		// b=0ならaを最大公約数として終了
		if (b == 0) {
			return a;
		} else {
			// a÷bのあまりをb、元のbをaとして2.にもどる
			return gcd(b, a % b);
		}
	}

	static int nextInt() {
		int c;
		try {
			c = System.in.read();
			while (c != '-' && (c < '0' || c > '9'))
				c = System.in.read();
			if (c == '-')
				return -nextInt();
			int res = 0;
			while (c >= '0' && c <= '9') {
				res = res * 10 + c - '0';
				c = System.in.read();
			}
			return res;
		} catch (IOException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		return -1;
	}

}
0