結果

問題 No.26 シャッフルゲーム
ユーザー regulusregulus
提出日時 2017-11-21 15:30:15
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 253 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 29,568 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-04 18:31:11
合計ジャッジ時間 806 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 0 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#include <stdio.h>
int main (void){
	int m,n;int p[400];
	scanf("%d%d",&m,&n);
	F(i,n){scanf("%d%d",&p[i],&p[i+1]);i++;}
	F(i,n){if(p[i]==m)m=p[i+1];else if(p[i+1]==m)m=p[i];i++;}
	printf("%d\n",m);
	return(0);
}
0