結果

問題 No.56 消費税
ユーザー Hissha_
提出日時 2018-03-30 14:43:22
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 144 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 27,392 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-26 00:29:31
合計ジャッジ時間 1,102 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int main(void) {
	// your code goes here
	int d, p;

	scanf("%d %d",&d, &p);
	
	printf("%d\n",d*(100+p)/100);

	return 0;
}
0