結果

問題 No.26 シャッフルゲーム
ユーザー suiginginsuigingin
提出日時 2015-07-07 22:17:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 168 ms / 5,000 ms
コード長 527 bytes
コンパイル時間 4,194 ms
コンパイル使用メモリ 74,436 KB
実行使用メモリ 54,212 KB
最終ジャッジ日時 2024-07-08 01:32:04
合計ジャッジ時間 6,188 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
53,952 KB
testcase_01 AC 129 ms
54,132 KB
testcase_02 AC 168 ms
54,188 KB
testcase_03 AC 137 ms
53,980 KB
testcase_04 AC 141 ms
54,136 KB
testcase_05 AC 150 ms
54,132 KB
testcase_06 AC 161 ms
54,112 KB
testcase_07 AC 141 ms
54,212 KB
testcase_08 AC 152 ms
53,844 KB
testcase_09 AC 167 ms
54,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no_000;

import java.util.Scanner;

public class No_026 {
	Scanner sc = new Scanner(System.in);

	void run() {
		int N = sc.nextInt() - 1;
		int M = sc.nextInt();
		int[] cup = new int[3];
		cup[N] = 1;
		while (M-- > 0) {
			swap(cup, sc.nextInt() - 1, sc.nextInt() - 1);
		}
		for (int i = 0; i < 3; i++) {
			if (cup[i] == 1) System.out.println(i + 1);
		}
	}

	void swap(int[] x, int a, int b) {
		int tmp = x[a];
		x[a] = x[b];
		x[b] = tmp;
	}

	public static void main(String[] args) {
		new No_026().run();
	}
}
0