結果

問題 No.26 シャッフルゲーム
ユーザー atkrymatkrym
提出日時 2016-11-07 18:16:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 5,000 ms
コード長 574 bytes
コンパイル時間 1,934 ms
コンパイル使用メモリ 74,572 KB
実行使用メモリ 54,160 KB
最終ジャッジ日時 2024-11-25 04:20:27
合計ジャッジ時間 4,036 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
52,696 KB
testcase_01 AC 113 ms
53,444 KB
testcase_02 AC 139 ms
53,800 KB
testcase_03 AC 130 ms
53,612 KB
testcase_04 AC 129 ms
54,004 KB
testcase_05 AC 144 ms
54,160 KB
testcase_06 AC 138 ms
54,152 KB
testcase_07 AC 132 ms
53,960 KB
testcase_08 AC 139 ms
54,052 KB
testcase_09 AC 142 ms
53,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    private static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws Exception {
        boolean[] b = new boolean[4];
        int n = sc.nextInt();
        b[n] = true;
        int m = sc.nextInt();
        for (int i = 0;i < m;i++) {
            int p = sc.nextInt();
            int q = sc.nextInt();
            boolean tmp = b[p];
            b[p] = b[q];
            b[q] = tmp;
        }
        for (int i = 1;i <= 3;i++) {
            if (b[i]) System.out.println(i);
        }
    }
}

0