結果
問題 |
No.285 消費税2
|
ユーザー |
|
提出日時 | 2020-04-07 20:26:37 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 112 bytes |
コンパイル時間 | 106 ms |
コンパイル使用メモリ | 23,040 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-08 00:19:33 |
合計ジャッジ時間 | 1,102 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 26 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:4:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 4 | scanf("%lld",&d); | ~~~~~^~~~~~~~~~~
ソースコード
#include <cstdio> int main(){ long long d; scanf("%lld",&d); printf("%.2lf",1.08*d); return 0; }