結果

問題 No.26 シャッフルゲーム
ユーザー abcabc
提出日時 2016-10-20 13:24:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 170 ms / 5,000 ms
コード長 628 bytes
コンパイル時間 1,979 ms
コンパイル使用メモリ 74,672 KB
実行使用メモリ 41,808 KB
最終ジャッジ日時 2024-11-23 14:42:00
合計ジャッジ時間 4,177 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
40,848 KB
testcase_01 AC 127 ms
40,932 KB
testcase_02 AC 170 ms
41,576 KB
testcase_03 AC 133 ms
41,108 KB
testcase_04 AC 139 ms
41,544 KB
testcase_05 AC 142 ms
41,180 KB
testcase_06 AC 145 ms
41,412 KB
testcase_07 AC 141 ms
41,192 KB
testcase_08 AC 155 ms
41,612 KB
testcase_09 AC 162 ms
41,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        int initialCircle =sc.nextInt();
        int numChange = sc.nextInt();

        int currentCircle = initialCircle;

        for (int i = 0; i < numChange; i++) {

            int from = sc.nextInt();
            int to = sc.nextInt();

            if (from == currentCircle) {

                currentCircle = to;

            } else if (to == currentCircle) {

                currentCircle = from;

            }

        }

        System.out.println(currentCircle);

    }

}
0