結果

問題 No.56 消費税
ユーザー shallowshallow
提出日時 2017-08-30 21:06:53
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 127 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 26,880 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-06 14:33:18
合計ジャッジ時間 1,009 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
int main() {
  double D, P;
  scanf("%lf %lf", &D, &P);
  printf("%d\n", (int)(D+(D*P/100)));
  return 0;
}
0