結果

問題 No.26 シャッフルゲーム
ユーザー KUSAKA GenKUSAKA Gen
提出日時 2018-02-23 18:36:57
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 345 bytes
コンパイル時間 407 ms
コンパイル使用メモリ 58,036 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-17 05:54:53
合計ジャッジ時間 939 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 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 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
using namespace std;

int main()
{
	int N, M;
	int P, Q;
	bool cup[3] = {false};
	
	cin >> N;
	cup[N - 1] = true;

	cin >> M;
	for(int i = 0; i < M; ++i)
	{
		cin >> P >> Q;
		swap(cup[P - 1], cup[Q - 1]);
	}

	for(int i = 0; i < 3; ++i)
	{
		if(cup[i])
		{
			cout << i + 1 << endl;
		}
	}

	return 0;
}
0