結果

問題 No.26 シャッフルゲーム
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-11 04:45:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 150 ms / 5,000 ms
コード長 445 bytes
コンパイル時間 1,764 ms
コンパイル使用メモリ 74,064 KB
実行使用メモリ 43,608 KB
最終ジャッジ日時 2024-11-25 07:42:10
合計ジャッジ時間 3,805 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
42,884 KB
testcase_01 AC 106 ms
42,736 KB
testcase_02 AC 140 ms
43,492 KB
testcase_03 AC 126 ms
42,532 KB
testcase_04 AC 129 ms
43,048 KB
testcase_05 AC 144 ms
43,524 KB
testcase_06 AC 139 ms
43,120 KB
testcase_07 AC 127 ms
43,608 KB
testcase_08 AC 145 ms
43,524 KB
testcase_09 AC 150 ms
43,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int M = sc.nextInt();
        for(int i=0; i<M; i++){
            int P = sc.nextInt();
            int Q = sc.nextInt();
            if(N==P){
                N=Q;
            }else if(N==Q){
                N=P;
            }
        }
        System.out.println(N);
    }
}
0