結果
| 問題 |
No.285 消費税2
|
| コンテスト | |
| ユーザー |
paranormal22
|
| 提出日時 | 2025-10-31 23:10:28 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 212 bytes |
| コンパイル時間 | 1,803 ms |
| コンパイル使用メモリ | 194,488 KB |
| 実行使用メモリ | 7,840 KB |
| 最終ジャッジ日時 | 2025-10-31 23:10:32 |
| 合計ジャッジ時間 | 3,432 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 WA * 1 |
| other | AC * 5 WA * 21 |
ソースコード
#include<bits/stdc++.h>
#define endl '\n'
#define MAXN 2000
using namespace std;
int main()
{
long long n;
cin >> n;
cout << setprecision(1) << fixed << n + (n * (8.0 / 100)) << endl;
return 0;
}
paranormal22