結果
問題 | No.799 赤黒かーどげぇむ |
ユーザー |
![]() |
提出日時 | 2023-07-29 09:28:10 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 382 bytes |
コンパイル時間 | 901 ms |
コンパイル使用メモリ | 102,856 KB |
最終ジャッジ日時 | 2025-02-15 20:54:57 |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 20 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:17:53: warning: ‘cnt’ may be used uninitialized [-Wmaybe-uninitialized] 17 | for (int j = c; j <= d; j++) if (i != j) cnt++; | ~~~^~ main.cpp:14:21: note: ‘cnt’ was declared here 14 | int a, b, c, d, cnt; | ^~~
ソースコード
#include<iostream>#include<string>#include<algorithm>#include<cctype>#include<set>#include<bitset>#include<math.h>#include<map>#include<queue>#include<iomanip>using namespace std;int main(){int a, b, c, d, cnt;cin >> a >> b >> c >> d;for (int i = a; i <= b; i++){for (int j = c; j <= d; j++) if (i != j) cnt++;}cout << cnt << endl;}