結果

問題 No.26 シャッフルゲーム
ユーザー GoryudyumaGoryudyuma
提出日時 2017-02-11 22:04:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 170 ms / 5,000 ms
コード長 661 bytes
コンパイル時間 2,787 ms
コンパイル使用メモリ 74,816 KB
実行使用メモリ 42,000 KB
最終ジャッジ日時 2024-06-09 09:58:14
合計ジャッジ時間 4,735 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,532 KB
testcase_01 AC 130 ms
41,344 KB
testcase_02 AC 169 ms
41,780 KB
testcase_03 AC 142 ms
41,428 KB
testcase_04 AC 145 ms
41,452 KB
testcase_05 AC 152 ms
41,848 KB
testcase_06 AC 152 ms
41,568 KB
testcase_07 AC 145 ms
41,644 KB
testcase_08 AC 156 ms
41,776 KB
testcase_09 AC 170 ms
42,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
        public static void main(String args[]) {
                try (Scanner sc = new Scanner(System.in)) {
                        int p = sc.nextInt(), n = sc.nextInt();
                        for (int i = 0; i < n; i++) {
                                int a = sc.nextInt(), b = sc.nextInt();
                                if (a == p) {
                                        p = b;
                                } else if(b == p) {
                                        p = a;
                                }
                        }
                        System.out.println(p);
                }
        }
}
0