結果

問題 No.1223 I hate Golf
ユーザー rei564219rei564219
提出日時 2020-11-24 13:59:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 192 bytes
コンパイル時間 1,465 ms
コンパイル使用メモリ 165,548 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-23 18:36:27
合計ジャッジ時間 2,051 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,948 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 WA -
testcase_14 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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:18: 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:18: 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;
      |             ^

ソースコード

diff #

#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;
    }
}

0