結果

問題 No.26 シャッフルゲーム
ユーザー atkrymatkrym
提出日時 2016-11-07 18:16:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 173 ms / 5,000 ms
コード長 574 bytes
コンパイル時間 2,176 ms
コンパイル使用メモリ 74,164 KB
実行使用メモリ 41,912 KB
最終ジャッジ日時 2024-05-03 22:56:36
合計ジャッジ時間 4,471 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
40,948 KB
testcase_01 AC 135 ms
41,000 KB
testcase_02 AC 170 ms
41,736 KB
testcase_03 AC 146 ms
41,380 KB
testcase_04 AC 146 ms
41,504 KB
testcase_05 AC 161 ms
41,704 KB
testcase_06 AC 160 ms
41,552 KB
testcase_07 AC 148 ms
41,408 KB
testcase_08 AC 155 ms
41,264 KB
testcase_09 AC 173 ms
41,912 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