結果

問題 No.1267 Stop and Coin Game
ユーザー tailstails
提出日時 2020-10-24 02:38:56
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 21 ms / 2,000 ms
コード長 684 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 30,848 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-07-21 14:48:49
合計ジャッジ時間 1,965 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 14 ms
10,624 KB
testcase_11 AC 6 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 18 ms
10,496 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 5 ms
6,016 KB
testcase_25 AC 13 ms
6,016 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 1 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 8 ms
10,596 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 5 ms
6,016 KB
testcase_34 AC 11 ms
6,016 KB
testcase_35 AC 10 ms
10,624 KB
testcase_36 AC 1 ms
5,376 KB
testcase_37 AC 4 ms
5,376 KB
testcase_38 AC 21 ms
10,496 KB
testcase_39 AC 2 ms
5,376 KB
testcase_40 AC 1 ms
5,376 KB
testcase_41 AC 3 ms
5,376 KB
testcase_42 AC 1 ms
5,376 KB
testcase_43 AC 3 ms
5,376 KB
testcase_44 AC 7 ms
9,472 KB
testcase_45 AC 1 ms
5,376 KB
testcase_46 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c:11:1: warning: return type defaults to 'int' [-Wimplicit-int]
   11 | main(){
      | ^~~~
main.c: In function 'main':
main.c:43:9: warning: implicit declaration of function 'write' [-Wimplicit-function-declaration]
   43 |         write(1,w,6);
      |         ^~~~~
main.c:44:9: warning: implicit declaration of function '_exit'; did you mean '_Exit'? [-Wimplicit-function-declaration]
   44 |         _exit(0);
      |         ^~~~~
      |         _Exit

ソースコード

diff #

#pragma GCC optimize("Ofast")
#pragma GCC target("avx2")

char*mmap();
#define RD(v) int v=0;{int c;while(c=*r++-48,c>=0)v=v*10+c;}
#define RDL(v) long v=0;{int c;while(c=*r++-48,c>=0)v=v*10+c;}

long b[1<<20];
char g[1<<20];

main(){
	char*r=mmap(0l,1024l,1,2,0,0l);
	char*w="Draw  ";
	RD(n);
	RDL(v);

	int nn=1<<n;
	for(int i=1;i<nn;++i){
		if(i&i-1){
			b[i]=b[i&i-1]+b[i&-i];
		}else{
			RDL(a);
			b[i]=a;
		}
	}
	if(b[nn-1]>v){
		for(int i=nn;i--;){
			if(b[i]>v){
				g[i]=1;
			}else{
				g[i]=0;
				int ii=~i&nn-1,j,t=1;
				for(;j=ii&-ii;ii^=j){
					if(!g[i|j]){
						g[i]=1;
						break;
					}
				}
			}
		}
		w=g[0]?"First ":"Second";
	}
	write(1,w,6);
	_exit(0);
}
0