結果

問題 No.285 消費税2
ユーザー koyumeishikoyumeishi
提出日時 2015-10-09 23:28:43
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 437 bytes
コンパイル時間 652 ms
コンパイル使用メモリ 74,044 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-20 04:41:53
合計ジャッジ時間 1,618 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cstdio>
#include <sstream>
#include <map>
#include <string>
#include <algorithm>
#include <queue>
#include <cmath>
#include <set>
using namespace std;

int main(){
	long long d;
	cin >> d;
	long long ans;
	ans = d*100 + d*8;

	char hoge[100];
	sprintf(hoge,"%lld", ans);

	string hage(hoge);
	cout << hage.substr(0, hage.size()-2) << "." << hage.substr(hage.size()-2) << endl;
	return 0;
}
0