結果

問題 No.583 鉄道同好会
ユーザー ianlinathomeianlinathome
提出日時 2017-11-10 06:42:50
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 256 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 22,912 KB
実行使用メモリ 6,940 KB
最終ジャッジ日時 2024-05-03 11:18:55
合計ジャッジ時間 965 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 0 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 WA -
testcase_05 AC 0 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 0 ms
5,376 KB
testcase_09 AC 0 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 6 ms
5,376 KB
testcase_12 AC 7 ms
5,376 KB
testcase_13 AC 7 ms
5,376 KB
testcase_14 AC 7 ms
5,376 KB
testcase_15 AC 9 ms
5,376 KB
testcase_16 AC 17 ms
5,376 KB
testcase_17 AC 21 ms
5,376 KB
testcase_18 AC 20 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:4:6: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    4 | scanf("%d%d",&n,&m);
      | ~~~~~^~~~~~~~~~~~~~
main.cpp:7:6: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    7 | scanf("%d%d",&l,&r);
      | ~~~~~^~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
int main(){
int n,m,a[1000],l,r,ans=0;
scanf("%d%d",&n,&m);
for(int i=0;i<n;i++)a[i]=0;
for(int i=0;i<m;i++){
scanf("%d%d",&l,&r);
a[l]++;
a[r]++;
}
for(int i=0;i<n;i++)if(a[i]%2==1)ans++;
if(ans>2)printf("NO\n");
else printf("YES\n");
}
0