結果
| 問題 | No.285 消費税2 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-06-27 19:09:30 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 185 bytes |
| 記録 | |
| コンパイル時間 | 1,011 ms |
| コンパイル使用メモリ | 179,016 KB |
| 実行使用メモリ | 6,272 KB |
| 最終ジャッジ日時 | 2026-03-27 05:06:58 |
| 合計ジャッジ時間 | 1,848 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 2 WA * 24 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define fp(x) fixed<<setprecision(x)
int main(){
ll d; cin>>d;
double tx=108;
cout<<fp(10)<< d*tx/100 <<endl;
}