結果
問題 |
No.285 消費税2
|
ユーザー |
|
提出日時 | 2023-07-23 13:09:20 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 12 ms / 2,000 ms |
コード長 | 221 bytes |
コンパイル時間 | 2,186 ms |
コンパイル使用メモリ | 191,680 KB |
最終ジャッジ日時 | 2025-02-15 18:30:09 |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 26 |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; #define fi first #define se second int main(){ long double n; cin >> n; cout << fixed << setprecision(2) << n * 1.08 << endl; return 0; }