結果
問題 | No.128 お年玉(1) |
ユーザー | hum_op |
提出日時 | 2015-05-10 15:48:07 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 193 bytes |
コンパイル時間 | 253 ms |
コンパイル使用メモリ | 32,128 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-01 09:55:55 |
合計ジャッジ時間 | 949 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 0 ms
5,248 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 0 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 1 ms
5,248 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
コンパイルメッセージ
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; }