結果

問題 No.26 シャッフルゲーム
ユーザー TatsuDXTatsuDX
提出日時 2016-09-08 23:32:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 171 ms / 5,000 ms
コード長 455 bytes
コンパイル時間 3,261 ms
コンパイル使用メモリ 74,904 KB
実行使用メモリ 54,436 KB
最終ジャッジ日時 2024-11-15 22:26:54
合計ジャッジ時間 5,468 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
53,684 KB
testcase_01 AC 132 ms
53,956 KB
testcase_02 AC 171 ms
54,256 KB
testcase_03 AC 140 ms
54,076 KB
testcase_04 AC 147 ms
54,276 KB
testcase_05 AC 153 ms
54,264 KB
testcase_06 AC 151 ms
54,120 KB
testcase_07 AC 142 ms
53,820 KB
testcase_08 AC 165 ms
54,436 KB
testcase_09 AC 168 ms
54,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		int[] t = new int[3];
		t[sc.nextInt() - 1] = 1;
		int n = sc.nextInt(), a, b, tmp;
		for (int i = 0; i < n; i++) {
			a = sc.nextInt() - 1;
			b = sc.nextInt() - 1;
			tmp = t[a];
			t[a] = t[b];
			t[b] = tmp;
		}
		for (int i = 0; i < 3; i++) {
			if (t[i] == 1) {
				System.out.println(i + 1);
				return;
			}
		}
	}
}
0