結果

問題 No.26 シャッフルゲーム
ユーザー tentententen
提出日時 2020-11-10 10:04:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 165 ms / 5,000 ms
コード長 647 bytes
コンパイル時間 2,678 ms
コンパイル使用メモリ 73,848 KB
実行使用メモリ 42,024 KB
最終ジャッジ日時 2024-07-22 17:16:57
合計ジャッジ時間 4,526 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,260 KB
testcase_01 AC 131 ms
41,228 KB
testcase_02 AC 161 ms
41,712 KB
testcase_03 AC 142 ms
41,468 KB
testcase_04 AC 148 ms
41,636 KB
testcase_05 AC 155 ms
41,872 KB
testcase_06 AC 155 ms
41,648 KB
testcase_07 AC 147 ms
41,396 KB
testcase_08 AC 157 ms
41,832 KB
testcase_09 AC 165 ms
42,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        boolean[] hasBall = new boolean[4];
        hasBall[sc.nextInt()] = true;
        int m = sc.nextInt();
        for (int i = 0; i < m; i++) {
            int left = sc.nextInt();
            int right = sc.nextInt();
            boolean tmp = hasBall[left];
            hasBall[left] = hasBall[right];
            hasBall[right] = tmp;
        }
        for (int i = 1; i < 4; i++) {
            if (hasBall[i]) {
                System.out.println(i);
                return;
            }
        }
    }
}
0