結果

問題 No.1208 anti primenumber game
ユーザー furafura
提出日時 2020-09-13 17:09:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 523 bytes
コンパイル時間 1,998 ms
コンパイル使用メモリ 199,284 KB
実行使用メモリ 13,132 KB
最終ジャッジ日時 2024-06-13 03:11:34
合計ジャッジ時間 5,302 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,948 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 WA -
testcase_16 AC 26 ms
12,928 KB
testcase_17 AC 25 ms
12,800 KB
testcase_18 AC 25 ms
13,004 KB
testcase_19 AC 25 ms
12,872 KB
testcase_20 WA -
testcase_21 AC 25 ms
12,800 KB
testcase_22 AC 27 ms
12,876 KB
testcase_23 WA -
testcase_24 AC 41 ms
12,876 KB
testcase_25 AC 40 ms
13,004 KB
testcase_26 AC 36 ms
12,928 KB
testcase_27 AC 39 ms
12,928 KB
testcase_28 AC 36 ms
12,872 KB
testcase_29 AC 37 ms
13,004 KB
testcase_30 AC 25 ms
12,928 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 26 ms
12,876 KB
testcase_34 AC 24 ms
12,928 KB
testcase_35 AC 25 ms
12,800 KB
testcase_36 AC 19 ms
11,088 KB
testcase_37 AC 25 ms
12,928 KB
testcase_38 AC 34 ms
12,800 KB
testcase_39 AC 35 ms
12,800 KB
testcase_40 AC 37 ms
12,928 KB
testcase_41 AC 26 ms
13,004 KB
testcase_42 AC 27 ms
12,928 KB
testcase_43 WA -
testcase_44 AC 27 ms
12,928 KB
testcase_45 WA -
testcase_46 AC 24 ms
12,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i,n) for(int i=0;i<(n);i++)

using namespace std;
using lint=long long;

const long long INF=1LL<<61;

int n;
lint m,a[200000];
lint cum[200001];

lint dfs(int i){
	if(i==n) return 0;

	lint tmp=dfs(i+1);
	lint res=cum[n]-cum[i]-(n-i)*m-2*tmp; // 全部取る
	if(a[i]>1){
		res=max(res,tmp+a[i]-1+m); // 1 個残す
	}
	return res;
}

int main(){
	scanf("%d%lld",&n,&m);
	rep(i,n) scanf("%lld",&a[i]);

	rep(i,n) cum[i+1]=cum[i]+a[i];

	puts(dfs(0)>0?"First":"Second");

	return 0;
}
0