結果

問題 No.26 シャッフルゲーム
ユーザー めうめう🎒めうめう🎒
提出日時 2016-05-09 21:19:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 5,000 ms
コード長 707 bytes
コンパイル時間 1,940 ms
コンパイル使用メモリ 74,224 KB
実行使用メモリ 54,452 KB
最終ジャッジ日時 2024-10-05 13:12:57
合計ジャッジ時間 3,777 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
53,928 KB
testcase_01 AC 103 ms
53,796 KB
testcase_02 AC 146 ms
54,064 KB
testcase_03 AC 124 ms
53,836 KB
testcase_04 AC 127 ms
54,452 KB
testcase_05 AC 130 ms
54,124 KB
testcase_06 AC 142 ms
54,188 KB
testcase_07 AC 125 ms
54,356 KB
testcase_08 AC 138 ms
53,980 KB
testcase_09 AC 136 ms
53,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayDeque;
import java.util.Arrays;
import java.util.Queue;
import java.util.Scanner;


public class Main {
	private int now;
	private int n;
	
	public void setNow(int now){
		this.now = now;
	}
	
	public void setN(int n){
		this.n = n;
	}
	
	public int getNow(){
		return this.now;
	}
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		Main m = new Main();
		int now = sc.nextInt();
		m.setNow(now);
		int n = sc.nextInt();
		m.setN(n);
		int a,b;
		for(int i = 0;i < n;i++){
			a = sc.nextInt();
			b = sc.nextInt();
			if(a == m.getNow()){
				m.setNow(b);
			}else if(b == m.getNow()){
				m.setNow(a);
			}
		}
		System.out.println(m.getNow());
	}
}
0