結果
| 問題 |
No.56 消費税
|
| コンテスト | |
| ユーザー |
mine691
|
| 提出日時 | 2019-04-04 23:46:22 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 150 bytes |
| コンパイル時間 | 1,579 ms |
| コンパイル使用メモリ | 165,296 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-12-28 01:34:52 |
| 合計ジャッジ時間 | 2,684 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 2 |
| other | AC * 8 WA * 15 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
int d, p;
int main()
{
cin >> d >> p;
cout << d + d / 100 * p << endl;
}
mine691