結果

問題 No.56 消費税
ユーザー kachipan
提出日時 2023-06-22 15:41:16
言語 C
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 176 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 27,392 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-29 22:50:58
合計ジャッジ時間 820 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3 WA * 1
other AC * 13 WA * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int main()
{
	double n = 0;
	double x = 0;
	int ans = 0;
	scanf("%lf", &n);
	scanf("%lf", &x);

	ans = n * (x / 100 + 1);

	printf("%d", ans);

	return 0;
}
0