結果

問題 No.26 シャッフルゲーム
ユーザー dazydazy
提出日時 2016-09-08 17:29:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 161 ms / 5,000 ms
コード長 550 bytes
コンパイル時間 3,908 ms
コンパイル使用メモリ 74,488 KB
実行使用メモリ 41,896 KB
最終ジャッジ日時 2024-11-15 22:19:19
合計ジャッジ時間 5,884 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,504 KB
testcase_01 AC 117 ms
41,260 KB
testcase_02 AC 161 ms
41,668 KB
testcase_03 AC 130 ms
41,804 KB
testcase_04 AC 136 ms
41,676 KB
testcase_05 AC 148 ms
41,696 KB
testcase_06 AC 151 ms
41,748 KB
testcase_07 AC 135 ms
41,520 KB
testcase_08 AC 156 ms
41,896 KB
testcase_09 AC 161 ms
41,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Run {
    public static void main (String arg[]) {
        Scanner scan = new Scanner(System.in);
        int N = scan.nextInt();
        int M = scan.nextInt();
        if (N < 1||N > 3||M < 1||M > 200) System.exit(1);
        int P,Q;
        for (int i = 0; i < M; i++) {
            P = scan.nextInt();
            Q = scan.nextInt();
            if (P < 1||P > 3||Q < 1||Q > 3||P==Q) System.exit(1);
            if (P==N) N = Q;
            else if (Q==N) N = P;
        }
        System.out.println(N);
    }
}
0