結果

問題 No.2521 Don't be Same
ユーザー tailstails
提出日時 2023-10-27 23:37:57
言語 cLay
(20240714-1)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 441 bytes
コンパイル時間 2,111 ms
コンパイル使用メモリ 170,748 KB
実行使用メモリ 25,220 KB
平均クエリ数 9.68
最終ジャッジ日時 2024-09-25 15:29:18
合計ジャッジ時間 5,757 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
24,812 KB
testcase_01 AC 68 ms
25,208 KB
testcase_02 AC 68 ms
25,208 KB
testcase_03 AC 67 ms
25,208 KB
testcase_04 AC 68 ms
24,824 KB
testcase_05 AC 69 ms
24,568 KB
testcase_06 AC 68 ms
24,836 KB
testcase_07 AC 70 ms
24,580 KB
testcase_08 AC 68 ms
25,220 KB
testcase_09 AC 70 ms
25,220 KB
testcase_10 AC 68 ms
25,208 KB
testcase_11 AC 68 ms
24,952 KB
testcase_12 AC 67 ms
24,824 KB
testcase_13 AC 69 ms
25,208 KB
testcase_14 AC 69 ms
24,568 KB
testcase_15 AC 67 ms
25,208 KB
testcase_16 AC 68 ms
24,580 KB
testcase_17 AC 68 ms
24,580 KB
testcase_18 AC 68 ms
25,220 KB
testcase_19 AC 68 ms
24,836 KB
testcase_20 AC 69 ms
25,220 KB
testcase_21 AC 67 ms
25,208 KB
testcase_22 AC 69 ms
24,824 KB
testcase_23 AC 69 ms
25,208 KB
testcase_24 AC 71 ms
25,208 KB
testcase_25 AC 70 ms
25,064 KB
testcase_26 AC 71 ms
24,824 KB
testcase_27 AC 70 ms
24,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//interactive
ll@x,@y;
if(x==0&&y==0||x%2==1&&y==x+1||y%2==1&&x==y+1){
	wt("Second");
	goto opp_turn;
}else{
	wt("First");
}

my_turn:
if(x==y){
	wt("B");
	x=y=0;
}else if(x==0){
	wt("A 2",y);
	y=0;
}else if(y==0){
	wt("A 1",x);
	x=0;
}else if(x<y){
	ll newy=x%2?x+1:x-1;
	wt("A 2",y-newy);
	y=newy;
}else{
	ll newx=y%2?y+1:y-1;
	wt("A 1",x-newx);
	x=newx;
}

opp_turn:
char@c;
if(c!='A'){
	exit(0);
}
ll@i,@z;
(i==1?x:y)-=z;

goto my_turn;
0