結果

問題 No.56 消費税
ユーザー VertigoVertigo
提出日時 2024-04-01 18:18:22
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 5,000 ms
コード長 466 bytes
コンパイル時間 698 ms
コンパイル使用メモリ 76,664 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-09-30 21:56:38
合計ジャッジ時間 1,594 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <sstream>
#include <vector>
using namespace std;

int main() {
    string first_line;
    getline(cin, first_line);
    stringstream ss(first_line);

    vector<int> cost_and_tax_rate;
    int num;
    while (ss >> num) {
        cost_and_tax_rate.push_back(num);
    }

    int cost = cost_and_tax_rate[0];
    int tax_rate = cost_and_tax_rate[1];

    int tax = cost * tax_rate / 100;

    cout << cost + tax << endl;

    return 0;
}
0