結果

問題 No.26 シャッフルゲーム
ユーザー ohagi_1182ohagi_1182
提出日時 2017-10-21 15:05:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 177 ms / 5,000 ms
コード長 380 bytes
コンパイル時間 2,392 ms
コンパイル使用メモリ 74,144 KB
実行使用メモリ 42,016 KB
最終ジャッジ日時 2024-11-21 12:30:42
合計ジャッジ時間 4,480 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
41,392 KB
testcase_01 AC 137 ms
41,184 KB
testcase_02 AC 177 ms
42,016 KB
testcase_03 AC 147 ms
41,720 KB
testcase_04 AC 151 ms
41,580 KB
testcase_05 AC 172 ms
41,668 KB
testcase_06 AC 160 ms
41,876 KB
testcase_07 AC 159 ms
41,456 KB
testcase_08 AC 169 ms
42,016 KB
testcase_09 AC 174 ms
41,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		int point = n;
		for(int i = 0 ; i < m ; i++) {
			int a = sc.nextInt();
			int b = sc.nextInt();
			if(point == a) point = b;
			else if(point == b) point = a;
		}
		System.out.println(point);
 	}
}

0