結果

問題 No.73 helloworld
ユーザー akakimidoriakakimidori
提出日時 2016-12-10 21:05:50
言語 C90
(gcc 12.3.0)
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 470 bytes
コンパイル時間 513 ms
コンパイル使用メモリ 20,608 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-29 21:37:25
合計ジャッジ時間 699 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 14
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘run’:
main.c:7:5: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    7 |     scanf("%d",c+i);
      |     ^~~~~~~~~~~~~~~

ソースコード

diff #

#include<stdio.h>

void run(void){
  int c[26];
  int i;
  for(i=0;i<26;i++){
    scanf("%d",c+i);
  }

  long long int ans=1;
  ans*=c['h'-'a'];
  ans*=c['e'-'a'];
  ans*=c['w'-'a'];
  ans*=c['r'-'a'];
  ans*=c['d'-'a'];
  int t=c['o'-'a']/2;
  ans*=t*(c['o'-'a']-t);

  int k;
  int max=0;
  for(k=2;k<c['l'-'a'];k++){
    int s=k*(k-1)/2*(c['l'-'a']-k);
    max=max<s?s:max;
  }
  ans*=max;
  printf("%lld\n",ans);
  return;
}

int main(void){
  run();
  return 0;
}
0