結果

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

テストケース

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

ソースコード

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) {
      cout << p[x * 2 + y] << endl;
      return 0;
    }
  }
  return 0;
}
0