結果
| 問題 | No.2237 Xor Sum Hoge |
| コンテスト | |
| ユーザー |
👑 potato167
|
| 提出日時 | 2023-02-20 20:30:13 |
| 言語 | C++17(gcc12) (gcc 12.4.0 + boost 1.90.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 484 bytes |
| 記録 | |
| コンパイル時間 | 5,260 ms |
| コンパイル使用メモリ | 255,236 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-06-29 16:13:50 |
| 合計ジャッジ時間 | 6,358 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 32 |
ソースコード
#include "testlib.h"
#include <iostream>
#include <vector>
using namespace std;
using ll = long long;
const int D=60;
const ll MIN_N=1;
const ll MAX_N=100'000;
const ll MIN_B=0;
const ll MAX_B=(1ll<<D)-1;
const ll MIN_C=0;
const ll MAX_C=(1ll<<D)-1;
int main() {
registerValidation();
inf.readLong(MIN_N,MAX_N,"N");
inf.readSpace();
inf.readLong(MIN_B,MAX_B,"B");
inf.readSpace();
inf.readLong(MIN_C,MAX_C,"C");
inf.readEoln();
inf.readEof();
cout<<"-1\n";
return 0;
}
potato167