結果
| 問題 | No.285 消費税2 |
| コンテスト | |
| ユーザー |
めうめう🎒
|
| 提出日時 | 2016-01-23 16:06:54 |
| 言語 | C++11 (gcc 15.3.0 + boost 1.92.0) |
| 結果 |
AC
不安定
|
| 実行時間 | 1 ms / 2,000 ms |
| + 392µs | |
| コード長 | 405 bytes |
| 記録 | |
| コンパイル時間 | 386 ms |
| コンパイル使用メモリ | 105,132 KB |
| 実行使用メモリ | 9,904 KB |
| 最終ジャッジ日時 | 2026-09-01 17:10:00 |
| 合計ジャッジ時間 | 1,832 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 26 |
ソースコード
#include <iostream>
#include <sstream>
#include <math.h>
#include <stack>
#include <set>
#include <algorithm>
#include <string>
#include <queue>
#include <stack>
#include <map>
#include <cstdio>
#include <vector>
#include <iomanip>
using namespace std;
#define INF (1 << 30)
#define INFLL (1LL << 60)
int main() {
double a;
cin >> a;
cout << fixed << setprecision(3) << a * 1.08 << endl;
return 0;
}
めうめう🎒