結果
問題 |
No.726 Tree Game
|
ユーザー |
|
提出日時 | 2018-08-24 21:26:28 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 556 bytes |
コンパイル時間 | 1,569 ms |
コンパイル使用メモリ | 194,652 KB |
最終ジャッジ日時 | 2025-01-06 12:30:31 |
ジャッジサーバーID (参考情報) |
judge4 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 18 WA * 7 |
ソースコード
//================================= // Created on: 2018/08/24 21:23:14 //================================= #include <bits/stdc++.h> #define show(x) std::cerr << #x << " = " << x << std::endl using ll = long long; using ull = unsigned long long; using ld = long double; constexpr ll MOD = 1000000007LL; template <typename T> constexpr T INF = std::numeric_limits<T>::max() / 10; std::mt19937 mt{std::random_device{}()}; int main() { ll Y, X; std::cin >> Y >> X; std::cout << ((Y + X) % 2 == 1 ? "First" : "Second") << std::endl; return 0; }