結果
問題 |
No.285 消費税2
|
ユーザー |
![]() |
提出日時 | 2018-06-13 15:24:20 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 170 bytes |
コンパイル時間 | 165 ms |
コンパイル使用メモリ | 30,592 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-30 14:06:28 |
合計ジャッジ時間 | 1,141 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 3 WA * 23 |
ソースコード
#include <stdio.h> int main(){ long long int num, money; scanf("%lld\n", &num); money = num*108; printf("%lf\n", (double)money/100.0); return 0; }