結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
24,940 KB
testcase_01 AC 22 ms
24,940 KB
testcase_02 AC 23 ms
24,812 KB
testcase_03 WA -
testcase_04 AC 24 ms
25,196 KB
testcase_05 AC 22 ms
24,940 KB
testcase_06 WA -
testcase_07 AC 23 ms
24,556 KB
testcase_08 AC 23 ms
25,196 KB
testcase_09 AC 22 ms
24,940 KB
testcase_10 AC 22 ms
24,940 KB
testcase_11 WA -
testcase_12 AC 23 ms
25,452 KB
testcase_13 AC 23 ms
24,556 KB
testcase_14 WA -
testcase_15 AC 23 ms
24,940 KB
testcase_16 AC 24 ms
24,940 KB
testcase_17 AC 23 ms
24,556 KB
testcase_18 AC 23 ms
25,196 KB
testcase_19 AC 23 ms
24,812 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 22 ms
24,940 KB
testcase_25 AC 23 ms
25,324 KB
testcase_26 AC 22 ms
24,556 KB
testcase_27 AC 23 ms
25,196 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 24 ms
24,556 KB
testcase_33 AC 23 ms
24,940 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 22 ms
24,940 KB
testcase_37 AC 23 ms
24,940 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 22 ms
24,812 KB
testcase_41 AC 24 ms
24,940 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 23 ms
25,196 KB
testcase_45 AC 24 ms
25,448 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 AC 23 ms
25,196 KB
testcase_49 AC 23 ms
24,812 KB
testcase_50 AC 23 ms
24,812 KB
testcase_51 AC 22 ms
24,940 KB
testcase_52 AC 23 ms
25,196 KB
testcase_53 AC 24 ms
24,892 KB
testcase_54 AC 24 ms
24,940 KB
testcase_55 AC 23 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 = 3;
  vector<int> v(n);
  rep(i, n)
    v[i] = i % 2;
  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