結果

問題 No.5005 3-SAT
ユーザー siman
提出日時 2022-05-05 18:17:43
言語 C++17(clang)
(17.0.6 + boost 1.87.0)
結果
AC  
実行時間 4 ms / 2,000 ms
コード長 516 bytes
コンパイル時間 2,806 ms
実行使用メモリ 3,604 KB
スコア 739
最終ジャッジ日時 2022-07-31 03:15:22
合計ジャッジ時間 5,917 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 100
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <climits>
#include <map>
#include <queue>
#include <set>
#include <cstring>
#include <vector>

using namespace std;
typedef long long ll;

const int T = 2048;
const int L = 256;

int main() {
  int a, b, c, p, q, r;
  for (int i = 0; i < T; ++i) {
    cin >> a >> b >> c >> p >> q >> r;
  }

  string res = "";
  for (int i = 0; i < L; ++i) {
    res += to_string(0);
  }

  cout << res << endl;

  return 0;
}
0