結果

問題 No.583 鉄道同好会
ユーザー uafr_csuafr_cs
提出日時 2017-11-08 20:44:43
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 662 bytes
コンパイル時間 1,827 ms
コンパイル使用メモリ 74,860 KB
実行使用メモリ 63,852 KB
最終ジャッジ日時 2024-11-24 06:02:12
合計ジャッジ時間 8,207 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 101 ms
41,128 KB
testcase_02 AC 119 ms
41,272 KB
testcase_03 WA -
testcase_04 AC 118 ms
41,408 KB
testcase_05 AC 117 ms
40,928 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 121 ms
41,124 KB
testcase_09 AC 123 ms
41,216 KB
testcase_10 AC 156 ms
41,816 KB
testcase_11 AC 432 ms
47,748 KB
testcase_12 AC 474 ms
48,096 KB
testcase_13 AC 480 ms
47,940 KB
testcase_14 AC 478 ms
48,064 KB
testcase_15 AC 430 ms
47,792 KB
testcase_16 AC 621 ms
51,820 KB
testcase_17 AC 682 ms
53,996 KB
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
	public static long MOD = 1000000007;
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		final int M = sc.nextInt();
		
		int[] degs = new int[N];
		for(int i = 0; i < M; i++){
			final int a = sc.nextInt();
			final int b = sc.nextInt();
			
			degs[a]++;
			degs[b]++;
		}
		
		int odd_count = 0;
		for(int i = 0; i < N; i++){
			if(degs[i] % 2 == 1){ odd_count++; }
		}
		
		if(odd_count == 0 && odd_count == 2){
			System.out.println("YES");
		}else{
			System.out.println("NO");
		}
	}
}
0