結果

問題 No.26 シャッフルゲーム
ユーザー kano_townkano_town
提出日時 2014-11-21 17:26:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 168 ms / 5,000 ms
コード長 533 bytes
コンパイル時間 3,414 ms
コンパイル使用メモリ 74,808 KB
実行使用メモリ 42,184 KB
最終ジャッジ日時 2024-06-10 21:31:03
合計ジャッジ時間 5,860 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
41,628 KB
testcase_01 AC 121 ms
41,620 KB
testcase_02 AC 160 ms
41,812 KB
testcase_03 AC 134 ms
41,492 KB
testcase_04 AC 149 ms
41,920 KB
testcase_05 AC 139 ms
41,844 KB
testcase_06 AC 154 ms
41,916 KB
testcase_07 AC 130 ms
41,556 KB
testcase_08 AC 141 ms
42,184 KB
testcase_09 AC 168 ms
41,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yukicoder26 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int M = sc.nextInt();
		int P, Q;
		boolean[] cup = {false, false, false};
		cup[N - 1] = true;

		for (int i = 0; i < M; i++) {
			P = sc.nextInt();
			Q = sc.nextInt();
			cup[P - 1] ^= cup[Q - 1];
			cup[Q - 1] ^= cup[P - 1];
			cup[P - 1] ^= cup[Q - 1];
		}
		
		for (int i = 0; i < 3; i++)
			if (cup[i])
				System.out.println(i + 1);

	}
}
0