結果
問題 | No.715 集合と二人ゲーム |
ユーザー | kotatsugame |
提出日時 | 2020-04-22 18:48:18 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 636 bytes |
コンパイル時間 | 697 ms |
コンパイル使用メモリ | 78,420 KB |
実行使用メモリ | 10,496 KB |
最終ジャッジ日時 | 2024-10-11 22:52:33 |
合計ジャッジ時間 | 9,889 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 13 ms
5,248 KB |
testcase_05 | AC | 16 ms
5,248 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 34 ms
5,248 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 55 ms
5,248 KB |
testcase_12 | AC | 68 ms
5,248 KB |
testcase_13 | WA | - |
testcase_14 | AC | 89 ms
5,248 KB |
testcase_15 | AC | 106 ms
5,248 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 137 ms
5,248 KB |
testcase_19 | AC | 156 ms
5,248 KB |
testcase_20 | AC | 147 ms
5,248 KB |
testcase_21 | WA | - |
testcase_22 | AC | 201 ms
5,248 KB |
testcase_23 | AC | 220 ms
5,248 KB |
testcase_24 | AC | 249 ms
5,248 KB |
testcase_25 | WA | - |
testcase_26 | AC | 237 ms
5,248 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 349 ms
5,248 KB |
testcase_30 | TLE | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
testcase_57 | -- | - |
testcase_58 | -- | - |
testcase_59 | -- | - |
コンパイルメッセージ
main.cpp:22:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 22 | main() | ^~~~
ソースコード
#include<iostream> #include<set> #include<algorithm> using namespace std; int N; int A[5<<17]; int memo[5<<17]; bool vis[5<<17]; int gru(int X) { if(vis[X])return memo[X]; set<int>S; for(int i=3;i<=X;i++) { S.insert(gru(i-3)^gru(X-i)); } int id=0; while(S.find(id)!=S.end())id++; vis[X]=true; return memo[X]=id; } main() { cin>>N; for(int i=0;i<N;i++)cin>>A[i]; sort(A,A+N); vis[0]=true; vis[1]=true;memo[1]=1; vis[2]=true;memo[1]=1; int ans=0; int c=1,pre=A[0]; for(int i=1;i<N;i++) { if(pre+1<A[i]) { ans^=gru(c); c=1; } else c++; pre=A[i]; } ans^=gru(c); cout<<(ans?"First":"Second")<<endl; }