結果

問題 No.60 魔法少女
ユーザー cielciel
提出日時 2015-04-24 03:46:01
言語 C90
(gcc 11.4.0)
結果
AC  
実行時間 79 ms / 5,000 ms
コード長 714 bytes
コンパイル時間 538 ms
コンパイル使用メモリ 21,632 KB
実行使用メモリ 9,468 KB
最終ジャッジ日時 2024-07-05 00:44:30
合計ジャッジ時間 2,496 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
5,504 KB
testcase_01 AC 7 ms
5,376 KB
testcase_02 AC 6 ms
5,504 KB
testcase_03 AC 7 ms
5,504 KB
testcase_04 AC 46 ms
9,444 KB
testcase_05 AC 54 ms
9,304 KB
testcase_06 AC 78 ms
9,360 KB
testcase_07 AC 59 ms
9,316 KB
testcase_08 AC 42 ms
9,344 KB
testcase_09 AC 21 ms
9,344 KB
testcase_10 AC 73 ms
9,436 KB
testcase_11 AC 14 ms
9,372 KB
testcase_12 AC 39 ms
9,388 KB
testcase_13 AC 79 ms
9,468 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:6:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    6 |         scanf("%d%d",&N,&K);
      |         ^~~~~~~~~~~~~~~~~~~
main.c:9:17: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    9 |                 scanf("%d%d%d",&x,&y,&h);
      |                 ^~~~~~~~~~~~~~~~~~~~~~~~
main.c:14:17: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   14 |                 scanf("%d%d%d%d%d",&x,&y,&w,&h,&d);
      |                 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
int field[1001][1001];
int damage[1002][1002];
int main(){
	int N,K,i,j,R=0;
	scanf("%d%d",&N,&K);
	for(i=0;i<N;i++){
		int x,y,h;
		scanf("%d%d%d",&x,&y,&h);
		field[y+500][x+500]=h;
	}
	for(i=0;i<K;i++){
		int x,y,w,h,d;
		scanf("%d%d%d%d%d",&x,&y,&w,&h,&d);
		x+=500,y+=500;
		int xe=x+w+1,ye=y+h+1;
		if(xe>1001)xe=1001;
		if(ye>1001)ye=1001;
		damage[y][x]+=d;
		damage[y][xe]-=d;
		damage[ye][x]-=d;
		damage[ye][xe]+=d;
	}
	for(i=0;i<1001;i++)for(j=1;j<1001;j++)damage[i][j]+=damage[i][j-1];
	for(i=1;i<1001;i++)for(j=0;j<1001;j++)damage[i][j]+=damage[i-1][j];
	for(i=0;i<1001;i++)for(j=0;j<1001;j++)if(field[i][j]>damage[i][j])R+=field[i][j]-damage[i][j];
	printf("%d\n",R);
	return 0;
}
0