結果

問題 No.56 消費税
ユーザー miku39kkmiku39kk
提出日時 2018-01-03 21:36:26
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 232 bytes
コンパイル時間 524 ms
コンパイル使用メモリ 63,016 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-23 02:28:53
合計ジャッジ時間 1,380 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <math.h>
using namespace std;

int main() {
    int a,b,ans;
    cin >> a >> b;
    ans = a * 0.01 * b;
    cout << a + ans;
    
    return 0;
}
0