結果

問題 No.264 じゃんけん
ユーザー umashikaumashika
提出日時 2016-01-31 11:18:06
言語 C90
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 451 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 20,224 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-21 19:38:00
合計ジャッジ時間 703 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 0 ms
5,376 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 0 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:6:3: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    6 |   scanf("%d %d",&n,&k);
      |   ^~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include<stdio.h>

int main(void)
{
  int n,k;
  scanf("%d %d",&n,&k);

  if(n==k){
    printf("Drew\n");
  }
  else if(n==0){//自分がグーを出す
    if(k==1){printf("WON\n");}
    if(k==2){printf("LOST\n");}
  }
  else if(n==1){//自分がチョキを出す
    if(k==2){printf("WON\n");}
    if(k==0){printf("LOST\n");}
  }
  else{//自分がパーを出す
    if(k==0){printf("WON\n");}
    if(k==1){printf("LOST\n");}
  }
  return 0;
}



0