結果

問題 No.583 鉄道同好会
ユーザー sca1lsca1l
提出日時 2017-10-27 23:13:15
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 611 bytes
コンパイル時間 2,020 ms
コンパイル使用メモリ 74,020 KB
実行使用メモリ 54,216 KB
最終ジャッジ日時 2024-11-21 23:09:53
合計ジャッジ時間 9,502 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,176 KB
testcase_01 AC 127 ms
41,100 KB
testcase_02 AC 132 ms
41,392 KB
testcase_03 AC 129 ms
40,912 KB
testcase_04 WA -
testcase_05 AC 129 ms
41,068 KB
testcase_06 AC 135 ms
41,100 KB
testcase_07 AC 132 ms
41,260 KB
testcase_08 AC 132 ms
40,972 KB
testcase_09 AC 138 ms
41,268 KB
testcase_10 AC 178 ms
41,488 KB
testcase_11 AC 483 ms
47,816 KB
testcase_12 AC 550 ms
47,852 KB
testcase_13 AC 545 ms
48,216 KB
testcase_14 AC 556 ms
47,796 KB
testcase_15 AC 600 ms
47,940 KB
testcase_16 AC 721 ms
51,800 KB
testcase_17 AC 790 ms
52,560 KB
testcase_18 AC 754 ms
52,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        
        int n = sc.nextInt();
        int m = sc.nextInt();
        
        int[] c = new int[n];
        
        for(int i=0; i<m*2; i++){
            c[sc.nextInt()]++;
        }
        
        int odd = 0;
        for(int i=0; i<n; i++){
            if(c[i]%2==1){
               odd++;
            }
        }
        
        if(odd==0 || odd==2){
            System.out.println("YES");
        }else{
            System.out.println("NO");
        }
    }
}
0