結果

問題 No.56 消費税
ユーザー siguma323siguma323
提出日時 2016-05-03 18:28:31
言語 C++11
(gcc 13.3.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 323 bytes
コンパイル時間 744 ms
コンパイル使用メモリ 67,452 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-18 03:11:36
合計ジャッジ時間 1,122 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 22 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <numeric>
#include <string>
#include <vector>
#include <iostream>
#include <queue>
#include <utility>
#include <cmath>
using namespace std;

using ull = unsigned long long;

int main()
{
    ull d;
    int p;
    cin >> d >> p;

    int zei = floor(d*(p*0.01));
    cout << d + zei << endl;
}
0