結果
| 問題 |
No.9003 小数誤差テスト(テスト用)
|
| ユーザー |
startcpp
|
| 提出日時 | 2014-11-06 22:49:23 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 252 bytes |
| コンパイル時間 | 301 ms |
| コンパイル使用メモリ | 53,596 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-06 15:59:17 |
| 合計ジャッジ時間 | 680 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 5 |
ソースコード
#include<iostream>
#include<cstdio>
using namespace std;
class Test{
public:
double omu( double n ){
return n;
}
};
Test test;
int main(){
double n;
//scanf("%lf",&n);
cin >> n;
printf("%.12f\n",test.omu(n) );
return 0;
}
startcpp