結果

問題 No.91 赤、緑、青の石
ユーザー takatowintakatowin
提出日時 2017-01-23 20:31:56
言語 C90
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 672 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 21,504 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-02 10:53:40
合計ジャッジ時間 1,175 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
5,248 KB
testcase_01 AC 4 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 5 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 5 ms
5,376 KB
testcase_06 WA -
testcase_07 AC 0 ms
5,376 KB
testcase_08 WA -
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 0 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 7 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 7 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 0 ms
5,376 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 0 ms
5,376 KB
testcase_25 AC 12 ms
5,376 KB
testcase_26 AC 11 ms
5,376 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 8 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:23:3: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   23 |   scanf("%d %d %d",&r,&g,&b);
      |   ^~~~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include<stdio.h>
#include<string.h>
void sort(int* a,int* b,int* c){
  int temp;
  if(*a>*b){
    temp=*a;
    *a=*b;
    *b=temp;
  }
  if(*b>*c){
    temp=*b;
    *b=*c;
    *c=temp;
  }
  if(*a>*b){
    temp=*a;
    *a=*b;
    *b=temp;
  }
}
int main(void){
  int r,g,b,n=0,temp;
  scanf("%d %d %d",&r,&g,&b);
  sort(&r,&g,&b);
  //printf("%d %d %d",r,g,b);
  n=r;
  g-=r;
  b-=r;
  if(g==0 || r<2){
    printf("%d\n",n );
    return 0;
  }
  temp=(b-g)/2;
  n+=temp;
  b-=temp*3;
  g-=temp;
  while((g>=3 || b>=3) && b>0 && g>0){
    if(b<=g){
      n++;
      g-=3;
      b--;
    }else{
      n++;
      g--;
      b-=3;
    }
 }
  printf("%d\n",n);
  return 0;
}

0