結果

問題 No.285 消費税2
ユーザー test
提出日時 2020-09-18 16:17:55
言語 C++17
(gcc 13.3.0 + boost 1.87.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
権限があれば一括ダウンロードができます

ソースコード

diff #

#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();
}
0