結果
問題 | No.560 ふしぎなナップサック |
ユーザー | tonets |
提出日時 | 2020-05-27 11:20:36 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 85 bytes |
コンパイル時間 | 119 ms |
コンパイル使用メモリ | 26,880 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-13 03:36:11 |
合計ジャッジ時間 | 775 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 1 ms
5,248 KB |
testcase_09 | AC | 1 ms
5,248 KB |
testcase_10 | AC | 1 ms
5,248 KB |
testcase_11 | AC | 1 ms
5,248 KB |
testcase_12 | AC | 1 ms
5,248 KB |
testcase_13 | AC | 1 ms
5,248 KB |
testcase_14 | AC | 1 ms
5,248 KB |
コンパイルメッセージ
main.c:1:1: warning: return type defaults to 'int' [-Wimplicit-int] 1 | main(){ | ^~~~ main.c: In function 'main': main.c:3:5: warning: implicit declaration of function 'scanf' [-Wimplicit-function-declaration] 3 | scanf("%lf %lf", &m, &n); | ^~~~~ main.c:1:1: note: include '<stdio.h>' or provide a declaration of 'scanf' +++ |+#include <stdio.h> 1 | main(){ main.c:3:5: warning: incompatible implicit declaration of built-in function 'scanf' [-Wbuiltin-declaration-mismatch] 3 | scanf("%lf %lf", &m, &n); | ^~~~~ main.c:3:5: note: include '<stdio.h>' or provide a declaration of 'scanf' main.c:4:5: warning: implicit declaration of function 'printf' [-Wimplicit-function-declaration] 4 | printf("%4.10lf", m+n/3); | ^~~~~~ main.c:4:5: note: include '<stdio.h>' or provide a declaration of 'printf' main.c:4:5: warning: incompatible implicit declaration of built-in function 'printf' [-Wbuiltin-declaration-mismatch] main.c:4:5: note: include '<stdio.h>' or provide a declaration of 'printf'
ソースコード
main(){ double m,n; scanf("%lf %lf", &m, &n); printf("%4.10lf", m+n/3); }