結果

問題 No.355 数当てゲーム(2)
ユーザー
提出日時 2020-08-08 14:34:08
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 1,619 bytes
コンパイル時間 871 ms
コンパイル使用メモリ 94,744 KB
実行使用メモリ 25,548 KB
平均クエリ数 40.00
最終ジャッジ日時 2024-07-17 05:35:46
合計ジャッジ時間 10,314 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 52
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:67:46: warning: 'c' may be used uninitialized [-Wmaybe-uninitialized]
   67 |         cout << a << " " << b << " " << c << " " << i << endl;
      |                                              ^~~
main.cpp:18:15: note: 'c' was declared here
   18 |     int a, b, c, d;
      |               ^
main.cpp:54:34: warning: 'b' may be used uninitialized [-Wmaybe-uninitialized]
   54 |         cout << a << " " << b << " " << i << " 0" << endl;
      |                                  ^~~
main.cpp:18:12: note: 'b' was declared here
   18 |     int a, b, c, d;
      |            ^
main.cpp:39:22: warning: 'a' may be used uninitialized [-Wmaybe-uninitialized]
   39 |         cout << a << " " << i << " 0 0" << endl;
      |                      ^~~
main.cpp:18:9: note: 'a' was declared here
   18 |     int a, b, c, d;
      |         ^

ソースコード

diff #

#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
#include <iomanip>
#include <cmath>
#include <stdio.h>
#include <queue>
#include <deque>
#include <cstdio>
#include <set>
#include <map>
#include <bitset>
#include <stack>
#include <cctype>
using namespace std;
int main() {
    int a, b, c, d;
    cout << "0 0 0 0" << endl;
    int sx, sy;
    cin >> sx >> sy;
    int x, y;
    for (int i = 1; i <= 9; i++) {
        cout << i << " 0 0 0" << endl;
        cin >> x >> y;
        if (sx != x) {
            if (sx - 1 == x) {
                a = 0;
            }
            if (sx + 1 == x) {
                a = i;
            }
            break;
        }
    }
    cout << a << " 0 0 0" << endl;
    cin >> sx >> sy;
    for (int i = 1; i <= 9; i++) {
        cout << a << " " << i << " 0 0" << endl;
        cin >> x >> y;
        if (sx != x) {
            if (sx - 1 == x) {
                b = 0;
            }
            if (sx + 1 == x) {
                b = i;
            }
            break;
        }
    }
    cout << a << " "<< b << " 0 0" << endl;
    cin >> sx >> sy;
    for (int i = 1; i <= 9; i++) {
        cout << a << " " << b << " " << i << " 0" << endl;
        cin >> x >> y;
        if (sx != x) {
            if (sx - 1 == x) {
                c = 0;
            }
            if (sx + 1 == x) {
                c = i;
            }
            break;
        }
    }
    for (int i = 0; i <= 9; i++) {
        cout << a << " " << b << " " << c << " " << i << endl;
        cin >> x >> y;
        if (x == 4 && y == 0) {
            return 0;
        }
    }
}
0