結果
| 問題 |
No.2823 PEX (Predecessing Excluded Value) Game
|
| コンテスト | |
| ユーザー |
みどりむし🦠
|
| 提出日時 | 2024-04-04 16:14:29 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 697 bytes |
| コンパイル時間 | 939 ms |
| コンパイル使用メモリ | 106,776 KB |
| 実行使用メモリ | 7,880 KB |
| 最終ジャッジ日時 | 2024-07-27 21:21:28 |
| 合計ジャッジ時間 | 2,709 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 49 WA * 1 |
ソースコード
#include <cstdint>
#include <numeric>
#include <iostream>
#include <vector>
#include <map>
#include <ranges>
using i64 = std::int64_t;
void solve() {
int n; std::cin >> n;
std::vector<std::pair<i64, i64>> lr(n);
for(auto& [ l, r ] : lr) std::cin >> l >> r, --l;
i64 grundy = 0;
i64 blanks = 0, prev_r = 0;
for(const auto& [ l, r ] : lr) {
blanks += l - prev_r;
prev_r = r;
if(blanks % 2 == 1) grundy ^= r - l;
}
std::cout << (grundy != 0 ? "First\n" : "Second\n");
return;
}
int main() {
solve();
return 0;
}
__attribute__((constructor)) inline void fast_io() { std::ios::sync_with_stdio(false), std::cin.tie(nullptr); }
みどりむし🦠