結果

問題 No.26 シャッフルゲーム
ユーザー lrf141lrf141
提出日時 2016-12-01 14:06:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 170 ms / 5,000 ms
コード長 644 bytes
コンパイル時間 4,616 ms
コンパイル使用メモリ 74,000 KB
実行使用メモリ 41,864 KB
最終ジャッジ日時 2024-05-05 16:38:27
合計ジャッジ時間 5,856 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,300 KB
testcase_01 AC 132 ms
41,292 KB
testcase_02 AC 170 ms
41,728 KB
testcase_03 AC 140 ms
41,296 KB
testcase_04 AC 149 ms
41,544 KB
testcase_05 AC 149 ms
41,728 KB
testcase_06 AC 156 ms
41,832 KB
testcase_07 AC 149 ms
41,828 KB
testcase_08 AC 151 ms
41,548 KB
testcase_09 AC 164 ms
41,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class no26{
    public static void main(String... args){
        
        Scanner scan = new Scanner(System.in);
        int n = scan.nextInt(),m = scan.nextInt(),p,q,tmp;
        int res[] = new int[3];
        res[n-1]++;

        for(int i = 0; i < m; i++){
            p = scan.nextInt();
            q = scan.nextInt();
            p--;
            q--;
            tmp = res[p];
            res[p] = res[q];
            res[q] = tmp;
        }

        for(int i = 0; i < 3; i++){
            if(res[i] == 1){
                System.out.println(i+1);
                break;
            }
        }
    }
}
0