結果

問題 No.83 最大マッチング
ユーザー umashikaumashika
提出日時 2016-02-22 03:51:46
言語 C90
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 719 bytes
コンパイル時間 475 ms
コンパイル使用メモリ 21,276 KB
実行使用メモリ 4,372 KB
最終ジャッジ日時 2023-10-23 19:02:10
合計ジャッジ時間 1,236 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<stdio.h>
int main()
{
  int n;
  int i,j;
  int ans;
  int q;
  scanf("%d",&n);
  while(n>0){
    if(n==2){ans=1;n=0;}        //2            //8
    else if(n==3){ans=7;n=0;}    //3            //7
    else if(n==4){ans=11;n=0;}  //2,2に分ける  //6
    else if(n==5){ans=71;n=0;}  //3,2          //5
    else if(n==6){ans=111;n=0;} //2,2,2        //3
    else if(n==7){ans=74;n=0;}  //3,4          //4
    else if(n==8){ans=1111;n=0;}//2,2,2,2      //1
    else if(n==9){ans=777;n=0;} //3,3,3        //2
    else{
        q = n/8;//1111がqこ作れる
        n = n%8;
      }
  }
    //答えはans 1111がqこ
  printf("%d",ans);
  for(i=0;i<q;i++){
    printf("1111");
  }
  printf("\n");
  return 0;
}
0