結果

問題 No.26 シャッフルゲーム
ユーザー キョウチクキョウチク
提出日時 2022-06-10 15:03:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 149 ms / 5,000 ms
コード長 647 bytes
コンパイル時間 2,206 ms
コンパイル使用メモリ 75,056 KB
実行使用メモリ 41,624 KB
最終ジャッジ日時 2024-09-21 05:46:34
合計ジャッジ時間 3,742 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,212 KB
testcase_01 AC 109 ms
41,284 KB
testcase_02 AC 132 ms
41,540 KB
testcase_03 AC 123 ms
41,364 KB
testcase_04 AC 128 ms
41,280 KB
testcase_05 AC 120 ms
40,796 KB
testcase_06 AC 149 ms
41,624 KB
testcase_07 AC 127 ms
41,412 KB
testcase_08 AC 130 ms
41,508 KB
testcase_09 AC 139 ms
41,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        // Your code here!
        Scanner sc=new Scanner(System.in);
        String[] line;
        line=sc.nextLine().split(" ");
        int place=Integer.parseInt(line[0]);
        line=sc.nextLine().split(" ");
        int m=Integer.parseInt(line[0]);
        for(int i=0;i<m;i++){
            line=sc.nextLine().split(" ");
            int tmp=Integer.parseInt(line[0]),tmp1=Integer.parseInt(line[1]);
            if(place==tmp) place=tmp1;
            else if(place==tmp1) place=tmp;
        }
        System.out.println(place);
    }
}
0