結果
| 問題 |
No.56 消費税
|
| コンテスト | |
| ユーザー |
toshiro_yanagi
|
| 提出日時 | 2019-01-06 20:04:48 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 160 bytes |
| コンパイル時間 | 508 ms |
| コンパイル使用メモリ | 64,548 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-11-24 00:17:28 |
| 合計ジャッジ時間 | 1,361 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 23 |
ソースコード
#include <iostream>
using namespace std;
int main()
{
int cstD, txP;
cin >> cstD >> txP;
int ans = cstD;
ans += cstD * txP / 100;
cout << ans << endl;
}
toshiro_yanagi