結果

問題 No.73 helloworld
ユーザー tsuishitsuishi
提出日時 2021-02-08 13:57:11
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 1,537 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 28,860 KB
実行使用メモリ 4,508 KB
最終ジャッジ日時 2023-09-19 04:03:51
合計ジャッジ時間 1,351 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
4,384 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 1 ms
4,384 KB
testcase_05 WA -
testcase_06 AC 1 ms
4,380 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 1 ms
4,380 KB
testcase_13 AC 1 ms
4,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
// Yukicoder №73 helloworld
// https://yukicoder.me/problems/no/73
// 問題文が意味不明
// ***********************
// for debug
#define DEBUG

#define NOP do{}while(0)
#ifdef DEBUG
#define TRACE(...) do{printf(__VA_ARGS__);fflush(stdout);}while(0)
#define TRACECR do{printf("\n");fflush(stdout);}while(0)
#else
#define TRACE(...) NOP
#define TRACECR NOP
#endif

#define PRINCR printf("\n")
#define NOCR(strig) do{char *p;p=strchr(strig,'\n');if(p)*p='\0';}while(0)
// The out-of-date function
#define	asctime(...)	asctime_s(...)
#define	ctime(...)		ctime_s(...)
#define	strlen(a)	mystr_len(a)

// for stdio
#define INPUT(str) do{char *p;fgets(str,sizeof(str),stdin);p=strchr(str,'\n');if(p)*p='\0';}while(0)
#define REP(a,b) for(int a=0;a<(int)(b);++a)
#define lolong long long
#define INPBUF (250+2)

// ***********************
#define ALFABET	(26)
#define	aaa(c)	alf[(c)-'a']
inline int max(int a,int b){if(a>b){return a;}return b;}
// ***********************
// 外部変数
lolong	lmax(int l ) {
	int	lmax = 0;
	for(int i = 2; i < l ; ++i ) {
		lmax = max( lmax , ( i * (i -1) / 2 )*( l - i ) );
	}
	return lmax;
}
// ***********************
int main() {
	char	str[INPBUF];
	int		alf[ALFABET];
	lolong	cnt = 0;

	REP(i,ALFABET) {
		INPUT( str );
		sscanf( str," %d", &alf[i]);
	}
	cnt =  aaa( 'h' )
		 * aaa( 'e' )
		 * aaa( 'w' )
		 * aaa( 'r' )
		 * aaa( 'd' )
		 * aaa( 'o' )/2
		 * (aaa( 'o' )+1)/2
		 * lmax( aaa('l') );
	printf("%lld\n", cnt);

	return 0;
}

0