結果

問題 No.26 シャッフルゲーム
ユーザー spaciaspacia
提出日時 2015-12-30 19:20:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 51 ms / 5,000 ms
コード長 579 bytes
コンパイル時間 1,876 ms
コンパイル使用メモリ 74,864 KB
実行使用メモリ 37,092 KB
最終ジャッジ日時 2024-09-19 08:48:05
合計ジャッジ時間 2,922 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
36,656 KB
testcase_01 AC 48 ms
37,092 KB
testcase_02 AC 51 ms
36,584 KB
testcase_03 AC 48 ms
36,832 KB
testcase_04 AC 47 ms
37,072 KB
testcase_05 AC 46 ms
37,016 KB
testcase_06 AC 47 ms
37,060 KB
testcase_07 AC 46 ms
36,880 KB
testcase_08 AC 46 ms
36,944 KB
testcase_09 AC 49 ms
36,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main26 {
	
	public static void out (Object o) {
		System.out.println(o);
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		int ans = Integer.parseInt(br.readLine());
		int m = Integer.parseInt(br.readLine());
		
		for (int i = 0; i < m; i++) {
			String[] line = br.readLine().split(" ");
			int p = Integer.parseInt(line[0]);
			int q = Integer.parseInt(line[1]);
			ans = ans == p ? q : ans == q ? p : ans;
		}
		
		out(ans);
	}
}
0