結果
問題 |
No.285 消費税2
|
ユーザー |
![]() |
提出日時 | 2019-08-11 21:34:38 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 182 bytes |
コンパイル時間 | 684 ms |
コンパイル使用メモリ | 64,948 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-14 02:19:02 |
合計ジャッジ時間 | 2,211 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 22 WA * 4 |
ソースコード
#include<iostream> #include<algorithm> using namespace std; using lint=int64_t; int main() { lint D; cin >> D; D=100*D+8*D; cout << D/100 << "." << D%100 << endl; return 0; }