結果

問題 No.355 数当てゲーム(2)
ユーザー fmhrfmhr
提出日時 2016-04-01 23:22:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,041 bytes
コンパイル時間 1,739 ms
コンパイル使用メモリ 165,224 KB
実行使用メモリ 35,652 KB
最終ジャッジ日時 2023-09-23 23:26:58
合計ジャッジ時間 8,023 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: 関数 ‘int main()’ 内:
main.cpp:27:19: 警告: ‘a’ is used uninitialized [-Wuninitialized]
   27 |         while (!(a!=b!=c!=d)){
      |                  ~^~~
main.cpp:26:13: 備考: ‘a’ はここで定義されています
   26 |         int a, b, c, d;
      |             ^
main.cpp:27:19: 警告: ‘b’ is used uninitialized [-Wuninitialized]
   27 |         while (!(a!=b!=c!=d)){
      |                  ~^~~
main.cpp:26:16: 備考: ‘b’ はここで定義されています
   26 |         int a, b, c, d;
      |                ^
main.cpp:27:22: 警告: ‘c’ is used uninitialized [-Wuninitialized]
   27 |         while (!(a!=b!=c!=d)){
      |                  ~~~~^~~
main.cpp:26:19: 備考: ‘c’ はここで定義されています
   26 |         int a, b, c, d;
      |                   ^
main.cpp:33:53: 警告: ‘d’ may be used uninitialized [-Wmaybe-uninitialized]
   33 |         cout << a << " " << b << " " << c << " " << d << endl;
      |                                                     ^
main.cpp:26:22: 備考: ‘d’ はここで定義されています
   26 |         int a, b, c, d;
      |                      ^

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define _GLIBCXX_DEBUG
#define dump(c) cerr << "> " << #c << " = " << (c) << endl
#define all(c) ((c).begin()), ((c).end())
#define rep(i,n) for(int i=0;i<n;i++)
#define FOR(i,s,e) for(int (i)=(int)(s);(i)<(int)(e);++(i))
#define inf 0x3f3f3f3f
#define infl 0x3f3f3f3f3f3f3f3fLL

typedef long long ll;
typedef unsigned long long ull;

void print_array(int a[], int n){rep(i,n){if(i<n-1){cout<<a[i]<<" ";}else{cout<<a[i]<<endl;}}}
void print_vector(vector<int> v){rep(i,v.size()){if(i<v.size()-1){cout<<v[i]<<" ";}else{cout<<v[i]<<endl;}}}

int main() {
    array<bool, 10> num = {0};
    array<int, 4> ans = {0};
    int x = 1;
    int y = 0;
    int unUsed;
    while (true){
        int a, b, c, d;
        while (!(a!=b!=c!=d)){
            a = rand()%10;
            b = rand()%10;
            c = rand()%10;
            d = rand()%10;
        }
        cout << a << " " << b << " " << c << " " << d << endl;
        cin >> x >> y;
        if (x==4 && y == 0) break;
    }
    return 0;
}
0