結果

問題 No.264 じゃんけん
ユーザー dododondon111dododondon111
提出日時 2017-03-17 10:09:06
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 275 bytes
コンパイル時間 108 ms
コンパイル使用メモリ 28,032 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-04 13:40:29
合計ジャッジ時間 592 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 WA -
testcase_08 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function 'main':
main.c:9:11: warning: implicit declaration of function 'abs' [-Wimplicit-function-declaration]
    9 |   else if(abs(me-you)==1&&me<you) printf("Won");
      |           ^~~
main.c:2:1: note: include '<stdlib.h>' or provide a declaration of 'abs'
    1 | #include<stdio.h>
  +++ |+#include <stdlib.h>
    2 | 

ソースコード

diff #

#include<stdio.h>

int main(){
  int me,you;

  scanf("%d %d",&me,&you);

  if(me==you) printf("Drew");
  else if(abs(me-you)==1&&me<you) printf("Won");
  else if(abs(me-you)==1&&me>you) printf("Lose");
  else if(me>you) printf("Won");
  else printf("Lose");

  return 0;


}
0