結果

問題 No.26 シャッフルゲーム
ユーザー yagi2yagi2
提出日時 2017-04-26 11:49:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 161 ms / 5,000 ms
コード長 589 bytes
コンパイル時間 2,327 ms
コンパイル使用メモリ 74,632 KB
実行使用メモリ 54,196 KB
最終ジャッジ日時 2024-09-13 14:01:19
合計ジャッジ時間 4,280 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
53,760 KB
testcase_01 AC 132 ms
53,728 KB
testcase_02 AC 152 ms
54,064 KB
testcase_03 AC 134 ms
54,148 KB
testcase_04 AC 140 ms
53,924 KB
testcase_05 AC 147 ms
54,148 KB
testcase_06 AC 142 ms
54,196 KB
testcase_07 AC 137 ms
54,024 KB
testcase_08 AC 150 ms
54,104 KB
testcase_09 AC 161 ms
54,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder.No26;

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int circle = Integer.parseInt(sc.next());
        int M = Integer.parseInt(sc.next());

        for (int i = 0; i < M; i++) {
            int b = Integer.parseInt(sc.next());
            int a = Integer.parseInt(sc.next());

            if (b == circle) {
                circle = a;
            } else if (a == circle) {
                circle = b;
            }
        }
        System.out.println(circle);
    }
}
0