結果

問題 No.178 美しいWhitespace (1)
ユーザー monburan_0401monburan_0401
提出日時 2018-09-18 16:17:37
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 652 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 29,824 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-18 08:00:12
合計ジャッジ時間 912 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function 'main':
main.c:18:21: warning: passing argument 4 of 'qsort' from incompatible pointer type [-Wincompatible-pointer-types]
   18 |         qsort(C,N,8,c);         //      (配列、データ数、1つのメモリ、並び順)
      |                     ^
      |                     |
      |                     int (*)(int *, int *)
In file included from main.c:2:
/usr/include/stdlib.h:839:34: note: expected '__compar_fn_t' {aka 'int (*)(const void *, const void *)'} but argument is of type 'int (*)(int *, int *)'
  839 |                    __compar_fn_t __compar) __nonnull ((1, 4));
      |                    ~~~~~~~~~~~~~~^~~~~~~~

ソースコード

diff #

#include <stdio.h>
#include <stdlib.h>

int c(int*a,int*b){return*a-*b;}		//	これを long でも通用するように

int main(void){
	int N;
	int a,b;
	long int C[1000];
	long int count = 0;
	
	scanf("%d",&N);
	for(int i = 0; i < N; i++){
		scanf("%d %d",&a,&b);
		C[i] = a + b * 4;
	}
	
	qsort(C,N,8,c);		//	(配列、データ数、1つのメモリ、並び順)
	
	//	check ok
/*	for(int k = 0; k < N; k++){
		printf("%d ",C[k]);
	}
	printf("\n");
*/	
	for(int j = 0; j < N-1; j++){
		if( (C[j+1] - C[j]) % 2 != 0 ){
			printf("-1\n");
			return 0;
		}else{
			count += (C[j+1] - C[j]) / 2 * (j+1);
		}
	}
	
	printf("%ld\n",count);
	return 0;
}
0