結果
問題 | No.353 ヘイトプラス |
ユーザー | tadanoningen |
提出日時 | 2020-09-16 06:26:11 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 144 bytes |
コンパイル時間 | 402 ms |
コンパイル使用メモリ | 64,112 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-22 03:02:29 |
合計ジャッジ時間 | 1,753 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:8:7: warning: 'b' is used uninitialized [-Wuninitialized] 8 | b = -b; | ~~^~~~ main.cpp:7:10: note: 'b' was declared here 7 | ll a,b; | ^ main.cpp:9:20: warning: 'a' is used uninitialized [-Wuninitialized] 9 | cout << a - (-b) << endl; | ^ main.cpp:7:8: note: 'a' was declared here 7 | ll a,b; | ^
ソースコード
#include<iostream> #define ll long long using namespace std; int main(){ ll a,b; b = -b; cout << a - (-b) << endl; return 0; }