結果
問題 | No.285 消費税2 |
ユーザー |
![]() |
提出日時 | 2017-01-23 11:44:31 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 164 bytes |
コンパイル時間 | 565 ms |
コンパイル使用メモリ | 62,080 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-23 05:48:09 |
合計ジャッジ時間 | 1,243 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 2 WA * 24 |
ソースコード
#include <iostream>#include <cstdio>using namespace std;int main(){double D;cin >> D;printf("%.8f\n", D + D * 0.08 - (1e-10));return 0;}