結果

問題 No.26 シャッフルゲーム
ユーザー koukonkokoukonko
提出日時 2015-12-07 13:39:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 58 ms / 5,000 ms
コード長 800 bytes
コンパイル時間 2,549 ms
コンパイル使用メモリ 74,976 KB
実行使用メモリ 50,192 KB
最終ジャッジ日時 2024-09-14 18:18:43
合計ジャッジ時間 3,498 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,168 KB
testcase_01 AC 55 ms
50,048 KB
testcase_02 AC 58 ms
49,764 KB
testcase_03 AC 54 ms
49,800 KB
testcase_04 AC 55 ms
50,180 KB
testcase_05 AC 57 ms
49,768 KB
testcase_06 AC 55 ms
50,164 KB
testcase_07 AC 55 ms
49,888 KB
testcase_08 AC 57 ms
50,192 KB
testcase_09 AC 57 ms
50,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) {
		BufferedReader buff = new BufferedReader(new InputStreamReader(System.in));

		try {
			int N = Integer.parseInt(buff.readLine());
			int M = Integer.parseInt(buff.readLine());

			for(int i = 0; i < M; ++i){
				String[] str = buff.readLine().split(" ");
				int[] box = new int[2];
				boolean flag = false;
				for(int j = 0; j < 2; ++j){
					box[j] = Integer.parseInt(str[j]);
					if(N == box[j]){
						flag = true;
					}
				}
				if(flag){
					if(N == box[0]){
						N = box[1];
					}else{
						N = box[0];
					}
				}
			}

			System.out.println(N);
		} catch (NumberFormatException e) {

		} catch (IOException e) {

		}
	}
}
0