結果

問題 No.26 シャッフルゲーム
ユーザー AoiroFukurouAoiroFukurou
提出日時 2016-05-24 11:27:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 161 ms / 5,000 ms
コード長 583 bytes
コンパイル時間 3,263 ms
コンパイル使用メモリ 74,904 KB
実行使用メモリ 54,312 KB
最終ジャッジ日時 2024-10-07 03:46:59
合計ジャッジ時間 5,539 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
53,796 KB
testcase_01 AC 132 ms
53,944 KB
testcase_02 AC 161 ms
54,184 KB
testcase_03 AC 141 ms
53,956 KB
testcase_04 AC 147 ms
54,228 KB
testcase_05 AC 154 ms
54,080 KB
testcase_06 AC 155 ms
54,312 KB
testcase_07 AC 147 ms
54,164 KB
testcase_08 AC 154 ms
54,188 KB
testcase_09 AC 160 ms
54,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class No_026 {
public static void main(String[] args) {
	Scanner sc = new Scanner(System.in);
	int N = sc.nextInt();
	int M = sc.nextInt();
	int[] cup = new int[4];

	cup[N] = 1;
	for(int i = 0; i < M; i++){
		int[] shuf = new int[2];
		shuf[0] = sc.nextInt();
		shuf[1] = sc.nextInt();
		if(cup[shuf[0]] == 1){
			cup[shuf[0]] = 0;
			cup[shuf[1]] =1;
		}else if(cup[shuf[1]] == 1){
			cup[shuf[1]] = 0;
			cup[shuf[0]] = 1;
		}
	}
	for(int i = 1; i < 4; i ++){
		if(cup[i] == 1){
			System.out.println(i);
			break;
		}
	}
}
}
0