結果

問題 No.26 シャッフルゲーム
ユーザー SuunnSuunn
提出日時 2018-11-20 05:10:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 149 ms / 5,000 ms
コード長 364 bytes
コンパイル時間 2,069 ms
コンパイル使用メモリ 73,796 KB
実行使用メモリ 54,228 KB
最終ジャッジ日時 2024-06-06 21:04:37
合計ジャッジ時間 4,201 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
52,508 KB
testcase_01 AC 107 ms
52,936 KB
testcase_02 AC 147 ms
53,984 KB
testcase_03 AC 122 ms
54,228 KB
testcase_04 AC 131 ms
54,212 KB
testcase_05 AC 149 ms
53,956 KB
testcase_06 AC 147 ms
54,076 KB
testcase_07 AC 130 ms
53,588 KB
testcase_08 AC 140 ms
53,728 KB
testcase_09 AC 148 ms
53,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
	

public class Main{
	
	
	public static void main(String args[])throws Exception{
		
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int M = sc.nextInt();
		for(int i=0;i<M;i++){
			int p = sc.nextInt();
			int q = sc.nextInt();
			if(N==p){
				N=q;
			}else if(N==q){
				N=p;
			}
		}
		System.out.println(N);
	}
	
}
0