結果

問題 No.26 シャッフルゲーム
ユーザー shinwisteriashinwisteria
提出日時 2018-03-04 16:49:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 178 ms / 5,000 ms
コード長 465 bytes
コンパイル時間 3,431 ms
コンパイル使用メモリ 74,368 KB
実行使用メモリ 54,272 KB
最終ジャッジ日時 2024-07-08 01:56:16
合計ジャッジ時間 5,742 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
53,768 KB
testcase_01 AC 138 ms
54,188 KB
testcase_02 AC 173 ms
54,068 KB
testcase_03 AC 148 ms
53,932 KB
testcase_04 AC 153 ms
54,124 KB
testcase_05 AC 162 ms
53,952 KB
testcase_06 AC 161 ms
54,060 KB
testcase_07 AC 154 ms
54,272 KB
testcase_08 AC 159 ms
54,204 KB
testcase_09 AC 178 ms
54,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;
public class Con26 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int[] cup = new int[3];
		int N = s.nextInt() , M = s.nextInt();
		cup[N-1] = 1;

		for(int i = 0;i < M;i++){
			int p = s.nextInt() , q = s.nextInt() , d = cup[q-1];
			cup[q-1] = cup[p-1];
			cup[p-1] = d;
		}
		s.close();

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

	}

}
0