結果

問題 No.26 シャッフルゲーム
ユーザー YatsukuYatsuku
提出日時 2015-12-15 21:33:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 178 ms / 5,000 ms
コード長 589 bytes
コンパイル時間 2,537 ms
コンパイル使用メモリ 74,516 KB
実行使用メモリ 41,804 KB
最終ジャッジ日時 2024-09-15 13:08:32
合計ジャッジ時間 4,148 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,216 KB
testcase_01 AC 117 ms
40,012 KB
testcase_02 AC 166 ms
41,804 KB
testcase_03 AC 142 ms
41,196 KB
testcase_04 AC 146 ms
41,364 KB
testcase_05 AC 153 ms
41,776 KB
testcase_06 AC 157 ms
41,728 KB
testcase_07 AC 148 ms
41,372 KB
testcase_08 AC 154 ms
41,504 KB
testcase_09 AC 178 ms
41,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


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

		int []cup = new int [3];

		int num = stdIn.nextInt();
		int shuffle = stdIn.nextInt();

		for (int i = 0; i < 3; i++) {
			cup[i] = 0;
		}
		cup[num-1] = 1;

		for (int i = 0; i < shuffle; i++) {
			int swap1 = stdIn.nextInt();
			int swap2 = stdIn.nextInt();

			int tmp = cup[swap1-1];
			cup[swap1-1] = cup[swap2-1];
			cup[swap2-1] = tmp;
		}
		for (int i = 0; i < 3; i++) {
			if ( cup[i] == 1 ) {
				System.out.println(i+1);
				break;
			}	
		}
	}
}
0