結果

問題 No.355 数当てゲーム(2)
ユーザー hiro71687k
提出日時 2023-05-04 05:46:10
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
RE  
実行時間 -
コード長 1,232 bytes
コンパイル時間 4,101 ms
コンパイル使用メモリ 251,384 KB
最終ジャッジ日時 2025-02-12 16:45:29
ジャッジサーバーID
(参考情報)
judge3 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other RE * 52
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll=long long;
using ld=long double;
ld pie=3.141592653589793;
ll inf=14449999999999999;
ll mod=998244353;
int main(){
    ll a=0,b=0,c=0,d=0;
    for (ll i = 0; i < 100; i++)
    {
        vector<ll>a(10,0);
        for (ll j = 0; j < 10; j++)
        {
            cout << j << ' ' << j << ' ' << j << ' ' << j << endl;
            ll x,y;
            cin >> x >> y;
            if (x==4)
            {
                return 0;
            }
            a[j]=x+y;
        }
        vector<ll>b(4);
        ll now=0;
        for (ll j = 0; j < 10; j++)
        {
            if (a[j]>=1)
            {
                b[now]=j;
                a[j]--;
                j--;
                now++;
                continue;
            }
        }
        vector<ll>c(4);
        c[0]=0;
        c[1]=1;
        c[2]=2;
        c[3]=3;
        do
        {
            cout << b[c[0]] << ' ' << b[c[1]] << ' ' << b[c[2]] << ' ' << b[c[3]] << endl;
            ll x,y;
            cin >> x >> y;
            if (x==4)
            {
                return 0;
            }
        } while (next_permutation(c.begin(),c.end()));
    }
}
0