結果

問題 No.285 消費税2
ユーザー silopy
提出日時 2019-08-11 21:36:30
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 180 bytes
コンパイル時間 497 ms
コンパイル使用メモリ 65,064 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-14 02:20:43
合計ジャッジ時間 1,474 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>
using namespace std;
using lint=int64_t;

int main()
{
	lint D;
	cin >> D;

	D=100*D+8*D;
	printf("%lld.%02lld\n",D/100,D%100);
	return 0;
}
0