結果

問題 No.26 シャッフルゲーム
ユーザー papipenpapipen
提出日時 2017-04-06 19:16:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 177 ms / 5,000 ms
コード長 337 bytes
コンパイル時間 2,451 ms
コンパイル使用メモリ 74,024 KB
実行使用メモリ 54,324 KB
最終ジャッジ日時 2024-07-17 21:29:24
合計ジャッジ時間 4,296 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
53,852 KB
testcase_01 AC 132 ms
54,020 KB
testcase_02 AC 175 ms
54,196 KB
testcase_03 AC 141 ms
54,124 KB
testcase_04 AC 150 ms
54,204 KB
testcase_05 AC 148 ms
54,260 KB
testcase_06 AC 154 ms
54,112 KB
testcase_07 AC 158 ms
54,324 KB
testcase_08 AC 157 ms
54,312 KB
testcase_09 AC 177 ms
54,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class N026{
	public static void main(String args[]){
		Scanner s = new Scanner(System.in);
		int n = s.nextInt();
		int m = s.nextInt();
		for(int i = 0; i < m; i++){
			int p = s.nextInt();
			int q = s.nextInt();
			if(p == n){
				n = q;
			}else if(q == n){
				n = p;
			}
		}
		System.out.println(n);
	}
}
0