結果

問題 No.56 消費税
ユーザー KunihikoWadaKunihikoWada
提出日時 2016-09-01 22:45:29
言語 C90
(gcc 12.3.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 187 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 21,504 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-12-17 17:47:01
合計ジャッジ時間 1,094 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 18 WA * 5
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:7:5: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    7 |     scanf("%d %d", &d, &p);
      |     ^~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

int main(void) {
    int d, p;
    float f;

    scanf("%d %d", &d, &p);
    f = (float)d * ((100.0 + (float)p) / 100.0);
    printf("%d\n", (int)f);

    return 0;
}
0