結果

問題 No.26 シャッフルゲーム
ユーザー AoiroFukurouAoiroFukurou
提出日時 2016-05-24 11:53:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 175 ms / 5,000 ms
コード長 618 bytes
コンパイル時間 4,211 ms
コンパイル使用メモリ 74,568 KB
実行使用メモリ 41,832 KB
最終ジャッジ日時 2024-04-16 10:37:53
合計ジャッジ時間 5,937 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
40,928 KB
testcase_01 AC 129 ms
41,156 KB
testcase_02 AC 170 ms
41,616 KB
testcase_03 AC 138 ms
41,324 KB
testcase_04 AC 145 ms
41,576 KB
testcase_05 AC 152 ms
41,424 KB
testcase_06 AC 161 ms
41,708 KB
testcase_07 AC 156 ms
41,468 KB
testcase_08 AC 158 ms
41,508 KB
testcase_09 AC 175 ms
41,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class No_26v2 {
public static void main(String[] args) {
	Scanner sc = new Scanner(System.in);
	int[] cup = new int[3];
	int N = sc.nextInt();
	int M = sc.nextInt();
	cup[N - 1] = 1;
	for(int i = 0; i < M; i++){
		int sf1 = sc.nextInt() - 1;
		int sf2 = sc.nextInt() - 1;
		if(cup[sf1] == 0 && cup[sf2] == 0){
			continue;
		}else if(cup[sf1] == 1){
			cup[sf1] = 0;
			cup[sf2] = 1;
		}else if(cup[sf2] == 1){
			cup[sf1] = 1;
			cup[sf2] = 0;
		}
	}
	sc.close();
	for(int i = 0; i < 3; i++){
		if(cup[i] == 1){
			System.out.println(i + 1);
			break;
		}
	}
}
}
0