結果

問題 No.285 消費税2
ユーザー keisuke6
提出日時 2022-05-20 11:11:39
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 193 bytes
コンパイル時間 1,513 ms
コンパイル使用メモリ 167,468 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-19 18:40:18
合計ジャッジ時間 2,412 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 3
other AC * 1 WA * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define int long long
#define double long double
signed main(){
    int N;
    cin>>N;
    cout<<fixed<<setprecision(15);
    cout<<N*1.08<<endl;
}
0