結果
問題 | No.2285 Make A Unit Square |
ユーザー | shobonvip |
提出日時 | 2023-04-28 22:13:53 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 206 ms / 2,000 ms |
コード長 | 686 bytes |
コンパイル時間 | 3,993 ms |
コンパイル使用メモリ | 267,356 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-17 21:09:22 |
合計ジャッジ時間 | 5,034 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 177 ms
5,248 KB |
testcase_03 | AC | 206 ms
5,248 KB |
testcase_04 | AC | 150 ms
5,248 KB |
ソースコード
#include<bits/stdc++.h> #include<atcoder/all> using namespace std; using namespace atcoder; typedef modint998244353 mint; typedef long long ll; void solve(vector<int> &dp){ int a, b; cin >> a >> b; int x = 0; if (a <= 100) x ^= dp[a]; else x ^= dp[a % 34 + 68]; if (b <= 100) x ^= dp[b]; else x ^= dp[b % 34 + 68]; if (x > 0) cout << "First\n"; else cout << "Second\n"; } int main(){ int mx = 150; vector<int> dp(mx+1); for (int i=4; i<mx+1; i++){ set<int> r; for (int j=2; j<=i-2; j++){ r.insert(dp[j] ^ dp[i-j]); } int piv = 0; while(r.find(piv) != r.end()) piv++; dp[i] = piv; //cout << dp[i] << endl; } int t; cin >> t; while(t--) solve(dp); }