結果
問題 | No.128 お年玉(1) |
ユーザー |
![]() |
提出日時 | 2015-05-10 15:48:07 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 193 bytes |
コンパイル時間 | 253 ms |
コンパイル使用メモリ | 32,128 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-01 09:55:55 |
合計ジャッジ時間 | 949 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 WA * 2 |
other | AC * 3 WA * 18 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:7:18: warning: format ‘%lf’ expects argument of type ‘double*’, but argument 2 has type ‘long double*’ [-Wformat=] 7 | scanf("%lf", &N); | ~~^ ~~ | | | | | long double* | double* | %Lf main.cpp:10:21: warning: format ‘%lf’ expects argument of type ‘double’, but argument 2 has type ‘long double’ [-Wformat=] 10 | printf("%.0lf\n", money); | ~~~~^ ~~~~~ | | | | | long double | double | %.0Lf main.cpp:7:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 7 | scanf("%lf", &N); | ~~~~~^~~~~~~~~~~ main.cpp:8:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 8 | scanf("%d", &M); | ~~~~~^~~~~~~~~~
ソースコード
#include <cstdio>#include <math.h>int main(){long double N, money;int M;scanf("%lf", &N);scanf("%d", &M);money = floor(N / M / 1000) * 1000;printf("%.0lf\n", money);return 0;}