結果
問題 | No.2823 PEX (Predecessing Excluded Value) Game |
ユーザー |
![]() |
提出日時 | 2024-06-17 11:28:37 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 641 bytes |
コンパイル時間 | 1,345 ms |
コンパイル使用メモリ | 107,520 KB |
実行使用メモリ | 7,920 KB |
最終ジャッジ日時 | 2024-07-28 09:18:06 |
合計ジャッジ時間 | 3,921 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 49 WA * 2 |
ソースコード
#include <cstdint>#include <numeric>#include <iostream>#include <vector>#include <map>#include <ranges>using i64 = std::int64_t;signed main() {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");}__attribute__((constructor)) inline void fast_io() { std::ios::sync_with_stdio(false), std::cin.tie(nullptr); }