結果

問題 No.26 シャッフルゲーム
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-14 23:59:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 175 ms / 5,000 ms
コード長 446 bytes
コンパイル時間 2,177 ms
コンパイル使用メモリ 74,148 KB
実行使用メモリ 41,848 KB
最終ジャッジ日時 2024-09-13 11:37:52
合計ジャッジ時間 4,336 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,236 KB
testcase_01 AC 130 ms
41,132 KB
testcase_02 AC 175 ms
41,692 KB
testcase_03 AC 140 ms
41,728 KB
testcase_04 AC 147 ms
41,644 KB
testcase_05 AC 151 ms
41,848 KB
testcase_06 AC 154 ms
41,480 KB
testcase_07 AC 145 ms
41,336 KB
testcase_08 AC 154 ms
41,616 KB
testcase_09 AC 173 ms
41,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		
		boolean[] cup = new boolean[3];
		cup[sc.nextInt()-1] = true;
		
		int n = sc.nextInt();
		for (int i=0; i<n; i++) {
			int a = sc.nextInt()-1; int b = sc.nextInt()-1;
			boolean t = cup[a];
			cup[a] = cup[b];
			cup[b] = t;
		}
		
		for (int i=0; i<3; i++) {
			if (cup[i] == true) System.out.println(i+1);
		}
		
	}
}
0