結果

問題 No.2819 Binary Binary-Operator
ユーザー tobbietobbie
提出日時 2024-08-09 10:33:30
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 623 bytes
コンパイル時間 1,770 ms
コンパイル使用メモリ 169,304 KB
実行使用メモリ 25,580 KB
平均クエリ数 4.00
最終ジャッジ日時 2024-08-09 10:33:38
合計ジャッジ時間 7,174 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
25,196 KB
testcase_01 AC 25 ms
25,196 KB
testcase_02 AC 24 ms
24,812 KB
testcase_03 AC 24 ms
25,196 KB
testcase_04 AC 25 ms
25,452 KB
testcase_05 AC 25 ms
25,196 KB
testcase_06 AC 25 ms
24,940 KB
testcase_07 AC 23 ms
24,556 KB
testcase_08 AC 24 ms
24,812 KB
testcase_09 AC 24 ms
24,812 KB
testcase_10 AC 23 ms
24,556 KB
testcase_11 AC 24 ms
25,196 KB
testcase_12 AC 24 ms
24,940 KB
testcase_13 AC 24 ms
25,196 KB
testcase_14 AC 24 ms
24,940 KB
testcase_15 AC 23 ms
25,196 KB
testcase_16 AC 24 ms
24,940 KB
testcase_17 WA -
testcase_18 AC 25 ms
24,812 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 24 ms
24,812 KB
testcase_22 WA -
testcase_23 AC 24 ms
25,196 KB
testcase_24 AC 24 ms
24,556 KB
testcase_25 WA -
testcase_26 AC 24 ms
25,196 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 24 ms
24,812 KB
testcase_30 WA -
testcase_31 AC 24 ms
24,556 KB
testcase_32 AC 25 ms
24,556 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 24 ms
24,940 KB
testcase_36 AC 25 ms
24,812 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 24 ms
24,940 KB
testcase_40 AC 24 ms
25,196 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 26 ms
24,940 KB
testcase_44 AC 24 ms
25,184 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 24 ms
25,196 KB
testcase_48 AC 24 ms
24,812 KB
testcase_49 WA -
testcase_50 AC 24 ms
24,556 KB
testcase_51 WA -
testcase_52 AC 24 ms
25,452 KB
testcase_53 WA -
testcase_54 AC 24 ms
24,784 KB
testcase_55 WA -
testcase_56 WA -
testcase_57 AC 24 ms
24,556 KB
testcase_58 WA -
testcase_59 AC 24 ms
25,196 KB
testcase_60 WA -
testcase_61 AC 24 ms
24,812 KB
testcase_62 WA -
testcase_63 AC 24 ms
24,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define rep(i, n) for (int i = 0; i < (int)n; i++)
using ll = long long int;

int main() {
  int x, y;
  cin >> x >> y;
  int n = 4;
  vector<int> v(n);
  v = {0, 0, 0, 0};
  cout << n << endl;
  rep(i, n)
    cout << v[i] << " ";
  cout << endl;
  int t;
  cin >> t;
  vector<int> p(4);
  rep(i, (1<<4)) {
    rep(j, 4) {
      p[j] = (i >> j) & 1;
    }
    int s = v[0];
    s = p[s * 2 + v[1]];
    s = p[s * 2 + v[2]];
    if (s == t) {
      rep(k, 4)
	cout << p[k] << " ";
      cout << endl;
      cout << p[x * 2 + y] << endl;
      return 0;
    }
  }
  return 0;
}
0