結果

問題 No.26 シャッフルゲーム
ユーザー YamaKasaYamaKasa
提出日時 2018-04-20 00:36:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 161 ms / 5,000 ms
コード長 497 bytes
コンパイル時間 2,041 ms
コンパイル使用メモリ 74,580 KB
実行使用メモリ 42,096 KB
最終ジャッジ日時 2024-06-27 04:57:21
合計ジャッジ時間 4,182 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,084 KB
testcase_01 AC 120 ms
41,008 KB
testcase_02 AC 160 ms
42,032 KB
testcase_03 AC 136 ms
41,284 KB
testcase_04 AC 140 ms
41,728 KB
testcase_05 AC 154 ms
41,740 KB
testcase_06 AC 161 ms
41,704 KB
testcase_07 AC 141 ms
41,388 KB
testcase_08 AC 150 ms
42,096 KB
testcase_09 AC 157 ms
41,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int M = scan.nextInt();
		int []P = new int[M];
		int []Q = new int[M];
		for(int i = 0; i < M; i++) {
			P[i] = scan.nextInt();
			Q[i] = scan.nextInt();
		}
		scan.close();
		int ans = N;
		for(int i = 0; i < M; i++) {
			if(ans == P[i]) {
				ans = Q[i];
			}else if(ans == Q[i]){
				ans = P[i];
			}
		}
		System.out.println(ans);
	}
}
0