結果
問題 |
No.285 消費税2
|
ユーザー |
![]() |
提出日時 | 2018-01-31 23:33:30 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 224 bytes |
コンパイル時間 | 726 ms |
コンパイル使用メモリ | 58,612 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-30 00:01:53 |
合計ジャッジ時間 | 1,580 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 22 WA * 4 |
ソースコード
#include <iostream> #include <string> #include <vector> #include <algorithm> using namespace std; long long D; int main(){ cin >> D; D *= 108; cout << D / 100 << "." << D%100 << endl; return 0; }