結果

問題 No.26 シャッフルゲーム
ユーザー soujikisoujiki
提出日時 2015-04-24 20:24:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 245 ms / 5,000 ms
コード長 535 bytes
コンパイル時間 3,651 ms
コンパイル使用メモリ 78,072 KB
実行使用メモリ 42,004 KB
最終ジャッジ日時 2024-07-05 01:09:19
合計ジャッジ時間 5,957 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 245 ms
41,196 KB
testcase_01 AC 131 ms
41,052 KB
testcase_02 AC 175 ms
42,004 KB
testcase_03 AC 143 ms
41,600 KB
testcase_04 AC 148 ms
41,592 KB
testcase_05 AC 165 ms
41,592 KB
testcase_06 AC 157 ms
41,704 KB
testcase_07 AC 149 ms
41,472 KB
testcase_08 AC 160 ms
41,668 KB
testcase_09 AC 177 ms
41,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Yukicoder_26{
	public static void main(String[] args){
		Scanner stdIn = new Scanner(System.in);
		int N = stdIn.nextInt();
		int M = stdIn.nextInt();
		boolean[] judg = new boolean[4];
		judg[N] = true;

		for(int i=0;i<M;i++){
			int P = stdIn.nextInt();
			int Q = stdIn.nextInt();
			if(judg[P]){
				judg[P] = false;
				judg[Q] = true;
			}
			else if(judg[Q]){
				judg[P] = true;
				judg[Q] = false;
			}
		}

		for(int i=1;i<=3;i++){
			if(judg[i]){
				System.out.println(i);
			}
		}
	}
}
0