結果

問題 No.56 消費税
ユーザー mattun_secmattun_sec
提出日時 2017-05-20 04:05:53
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 184 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 28,544 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-18 23:22:11
合計ジャッジ時間 1,137 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <math.h>
int main(void) {
	double d,p;

	scanf("%lf %lf", &d, &p);
	
	p *= 0.01;

	double ans;

	ans = (d + d *p);

	printf("%d\n", (int)ans);

	return 0;
}
0