結果
| 問題 | No.285 消費税2 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-09-18 16:17:55 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 15 ms / 2,000 ms |
| コード長 | 263 bytes |
| 記録 | |
| コンパイル時間 | 1,528 ms |
| コンパイル使用メモリ | 192,360 KB |
| 最終ジャッジ日時 | 2025-01-14 16:08:33 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 26 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ld = long double;
ld N;
void input() { cin >> N; }
void solve() { cout << N * 1.08 << endl; }
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
cout << fixed << setprecision(3);
input();
solve();
}