結果
問題 | No.218 経験値1.5倍 |
ユーザー | tsuishi |
提出日時 | 2021-01-15 15:08:57 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 264 bytes |
コンパイル時間 | 238 ms |
コンパイル使用メモリ | 27,776 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-05-04 13:46:05 |
合計ジャッジ時間 | 1,259 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 0 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 0 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 0 ms
5,376 KB |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | WA | - |
testcase_17 | AC | 1 ms
5,376 KB |
testcase_18 | AC | 1 ms
5,376 KB |
testcase_19 | AC | 1 ms
5,376 KB |
testcase_20 | AC | 1 ms
5,376 KB |
testcase_21 | AC | 0 ms
5,376 KB |
testcase_22 | AC | 0 ms
5,376 KB |
testcase_23 | AC | 1 ms
5,376 KB |
testcase_24 | WA | - |
testcase_25 | AC | 1 ms
5,376 KB |
testcase_26 | WA | - |
testcase_27 | AC | 1 ms
5,376 KB |
testcase_28 | WA | - |
testcase_29 | AC | 1 ms
5,376 KB |
testcase_30 | AC | 0 ms
5,376 KB |
コンパイルメッセージ
main.c: In function 'main': main.c:4:5: warning: implicit declaration of function 'scanf' [-Wimplicit-function-declaration] 4 | scanf( "%ld", &a ); | ^~~~~ main.c:1:1: note: include '<stdio.h>' or provide a declaration of 'scanf' +++ |+#include <stdio.h> 1 | int main(void) { main.c:4:5: warning: incompatible implicit declaration of built-in function 'scanf' [-Wbuiltin-declaration-mismatch] 4 | scanf( "%ld", &a ); | ^~~~~ main.c:4:5: note: include '<stdio.h>' or provide a declaration of 'scanf' main.c:9:9: warning: implicit declaration of function 'printf' [-Wimplicit-function-declaration] 9 | printf("YES\n"); | ^~~~~~ main.c:9:9: note: include '<stdio.h>' or provide a declaration of 'printf' main.c:9:9: warning: incompatible implicit declaration of built-in function 'printf' [-Wbuiltin-declaration-mismatch] main.c:9:9: note: include '<stdio.h>' or provide a declaration of 'printf' main.c:11:9: warning: incompatible implicit declaration of built-in function 'printf' [-Wbuiltin-declaration-mismatch] 11 | printf("NO\n"); | ^~~~~~ main.c:11:9: note: include '<stdio.h>' or provide a declaration of 'printf'
ソースコード
int main(void) { unsigned long a,b,c; int r; scanf( "%ld", &a ); scanf( "%ld", &b ); scanf( "%ld", &c ); r = a / b; if ( (c * ((r + r) / 3 )) >= a ) { printf("YES\n"); } else { printf("NO\n"); } return 0; }