結果

問題 No.355 数当てゲーム(2)
ユーザー fmhrfmhr
提出日時 2016-04-01 23:22:11
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,041 bytes
コンパイル時間 1,774 ms
コンパイル使用メモリ 168,220 KB
実行使用メモリ 39,904 KB
最終ジャッジ日時 2024-07-16 23:14:25
合計ジャッジ時間 8,428 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other TLE * 1
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:27:19: warning: 'a' is used uninitialized [-Wuninitialized]
   27 |         while (!(a!=b!=c!=d)){
      |                  ~^~~
main.cpp:26:13: note: 'a' was declared here
   26 |         int a, b, c, d;
      |             ^
main.cpp:27:19: warning: 'b' is used uninitialized [-Wuninitialized]
   27 |         while (!(a!=b!=c!=d)){
      |                  ~^~~
main.cpp:26:16: note: 'b' was declared here
   26 |         int a, b, c, d;
      |                ^
main.cpp:27:22: warning: 'c' is used uninitialized [-Wuninitialized]
   27 |         while (!(a!=b!=c!=d)){
      |                  ~~~~^~~
main.cpp:26:19: note: 'c' was declared here
   26 |         int a, b, c, d;
      |                   ^
main.cpp:33:53: warning: 'd' may be used uninitialized [-Wmaybe-uninitialized]
   33 |         cout << a << " " << b << " " << c << " " << d << endl;
      |                                                     ^
main.cpp:26:22: note: 'd' was declared here
   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