結果

問題 No.29 パワーアップ
ユーザー tsuishitsuishi
提出日時 2021-01-08 13:48:59
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 870 bytes
コンパイル時間 635 ms
コンパイル使用メモリ 30,220 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-09 20:57:12
合計ジャッジ時間 1,830 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <stdio.h>
#include <string.h>

#define INPUT(str) do{char *p;fgets(str,sizeof(str),stdin);p=strchr(str,'\n');if(p)*p='\0';}while(0)
static char *getinput( char* str );
static char *getinput(char* str) {char c;char *cp;cp=&str[0];c=fgetc(stdin);while( c != EOF ){if((c==' ')||( c=='\n')) break;*cp++=c;c=fgetc(stdin);}*cp='\0';return &str[0];}
#define REP(a,b) for(int a=0;a<(int)(b);++a)
#define INPBUF (4+3)
int	item[100];
// ***********************
int main(void) {
	char str[INPBUF];
	int	query;
	int	val;
	int	ans;
	int	nokori;

	// init
	REP(i,100) item[i] = 0;
	// ready
	INPUT(str); sscanf( str , "%d", &query );
	REP(i,query*3) {
		getinput(str);
		sscanf( str , "%d", &val );
		item[val-1]++;
	}
	// start
	ans = 0;
	nokori = 0;
	REP(i,100) {
		ans += item[i]/2;
		nokori += ( item[i] & 1 );
	}
	ans += nokori / 4;
	printf("%d\n", ans );

	return 0;
}
0