結果
| 問題 | No.1589 Bit Vector |
| コンテスト | |
| ユーザー |
沙耶花
|
| 提出日時 | 2021-07-08 14:31:31 |
| 言語 | C++17(gcc12) (gcc 12.4.0 + boost 1.90.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 591 bytes |
| 記録 | |
| コンパイル時間 | 8,115 ms |
| コンパイル使用メモリ | 336,088 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-06-21 11:31:43 |
| 合計ジャッジ時間 | 15,669 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | AC * 2 WA * 25 RE * 8 |
ソースコード
#include <stdio.h>
#include <bits/stdc++.h>
#include "testlib.h"
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000001
int main(){
registerValidation();
int N,K,T;
N = inf.readInt(2,50);
inf.readSpace();
K = inf.readInt(1,N);
inf.readEoln();
T = inf.readInt(1,100);
inf.readEoln();
rep(i,T){
rep(j,N){
if(j!=0){
inf.readSpace();
}
int C;
C = inf.readInt(0,1);
}
inf.readEoln();
}
inf.readEof();
assert(N%2==0);
return 0;
}
沙耶花