結果
問題 | No.1223 I hate Golf |
ユーザー | rei564219 |
提出日時 | 2020-11-24 14:00:19 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 193 bytes |
コンパイル時間 | 1,520 ms |
コンパイル使用メモリ | 166,648 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-23 18:36:31 |
合計ジャッジ時間 | 2,153 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | WA | - |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:5:11: warning: 'a' is used uninitialized [-Wuninitialized] 5 | if(abs(a) <= b*c) | ~~~^~~ main.cpp:4:9: note: 'a' was declared here 4 | int a,b,c; | ^ main.cpp:5:19: warning: 'b' is used uninitialized [-Wuninitialized] 5 | if(abs(a) <= b*c) | ~^~ main.cpp:4:11: note: 'b' was declared here 4 | int a,b,c; | ^ main.cpp:5:19: warning: 'c' is used uninitialized [-Wuninitialized] 5 | if(abs(a) <= b*c) | ~^~ main.cpp:4:13: note: 'c' was declared here 4 | int a,b,c; | ^
ソースコード
#include <bits/stdc++.h> using namespace std; int main(void){ int a,b,c; if(abs(a) <= b*c) { cout<< "Yes"<< endl; } else { cout <<"No" << endl; } }