結果

問題 No.285 消費税2
ユーザー funakoshi
提出日時 2019-08-28 10:52:31
言語 C
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 221 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 29,312 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-17 16:08:54
合計ジャッジ時間 1,019 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 3 WA * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
#include <math.h>
int main(void)
{
    double price;
    scanf("%lf",&price);
    price*=108;
    price/=100;
    printf("%lf",price);
    
}
0