結果
| 問題 |
No.9003 小数誤差テスト(テスト用)
|
| ユーザー |
kenkoooo
|
| 提出日時 | 2015-03-14 03:25:03 |
| 言語 | Java (openjdk 23) |
| 結果 |
AC
|
| 実行時間 | 42 ms / 5,000 ms |
| コード長 | 834 bytes |
| コンパイル時間 | 2,019 ms |
| コンパイル使用メモリ | 75,260 KB |
| 実行使用メモリ | 36,736 KB |
| 最終ジャッジ日時 | 2024-07-06 16:03:24 |
| 合計ジャッジ時間 | 2,460 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 5 |
ソースコード
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;
}
}
kenkoooo