結果

問題 No.26 シャッフルゲーム
ユーザー カニ戯(ryカニ戯(ry
提出日時 2015-02-26 16:17:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 166 ms / 5,000 ms
コード長 314 bytes
コンパイル時間 2,051 ms
コンパイル使用メモリ 74,068 KB
実行使用メモリ 42,276 KB
最終ジャッジ日時 2024-06-23 23:48:34
合計ジャッジ時間 4,560 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,540 KB
testcase_01 AC 126 ms
41,276 KB
testcase_02 AC 166 ms
42,276 KB
testcase_03 AC 135 ms
41,736 KB
testcase_04 AC 134 ms
41,748 KB
testcase_05 AC 143 ms
41,688 KB
testcase_06 AC 163 ms
41,980 KB
testcase_07 AC 136 ms
41,728 KB
testcase_08 AC 159 ms
41,972 KB
testcase_09 AC 165 ms
42,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main {
	public static void main(String[] a) {
		Scanner s=new Scanner(System.in);
		int[] C=new int[4];C[s.nextInt()]=1;
		s.nextInt();
		while(s.hasNext()){
			int i=s.nextInt(),j=s.nextInt(),t=C[i];
			C[i]=C[j];C[j]=t;
		}
		System.out.println(C[1]>0?1:C[2]>0?2:3);
	}
}
0