結果

問題 No.26 シャッフルゲーム
ユーザー lrf141lrf141
提出日時 2016-12-01 14:06:06
言語 Java
(openjdk 23)
結果
AC  
実行時間 151 ms / 5,000 ms
コード長 644 bytes
コンパイル時間 2,959 ms
コンパイル使用メモリ 74,072 KB
実行使用メモリ 41,792 KB
最終ジャッジ日時 2024-11-27 15:43:51
合計ジャッジ時間 4,910 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
39,764 KB
testcase_01 AC 108 ms
40,344 KB
testcase_02 AC 149 ms
41,452 KB
testcase_03 AC 117 ms
41,188 KB
testcase_04 AC 126 ms
41,692 KB
testcase_05 AC 151 ms
41,688 KB
testcase_06 AC 146 ms
41,640 KB
testcase_07 AC 127 ms
41,184 KB
testcase_08 AC 149 ms
41,792 KB
testcase_09 AC 151 ms
41,620 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