結果

問題 No.285 消費税2
ユーザー Konton7
提出日時 2020-01-15 14:21:14
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 180 bytes
コンパイル時間 2,464 ms
コンパイル使用メモリ 190,144 KB
最終ジャッジ日時 2025-01-08 18:08:04
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
typedef long long ll;


int main(){
    double n;
    cin >> n;
    n *= 108;
    n /= 100;
    printf("%.2f\n", n);
    return 0;

}
0