結果

問題 No.60 魔法少女
ユーザー 37zigen37zigen
提出日時 2016-05-04 16:38:51
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 1,050 bytes
コンパイル時間 1,901 ms
コンパイル使用メモリ 77,188 KB
実行使用メモリ 117,772 KB
最終ジャッジ日時 2024-10-05 06:31:12
合計ジャッジ時間 12,849 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 181 ms
85,728 KB
testcase_01 AC 165 ms
85,324 KB
testcase_02 AC 180 ms
85,836 KB
testcase_03 AC 188 ms
85,824 KB
testcase_04 AC 967 ms
116,768 KB
testcase_05 AC 1,037 ms
114,668 KB
testcase_06 AC 1,166 ms
112,936 KB
testcase_07 AC 1,009 ms
114,824 KB
testcase_08 AC 925 ms
112,040 KB
testcase_09 AC 625 ms
111,236 KB
testcase_10 AC 1,097 ms
117,772 KB
testcase_11 WA -
testcase_12 AC 889 ms
117,184 KB
testcase_13 AC 1,141 ms
114,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;
import java.util.Scanner;
public class Main{
	public static void main(String[] args)throws Exception{
		new Main().solve();
	}
	void solve(){
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt();
		int k=sc.nextInt();
		int[][] table=new int[2000][2000];
		for(int i=0;i<n;i++){
			int x=sc.nextInt()+500;
			int y=sc.nextInt()+500;
			int hp=sc.nextInt();
			table[y][x]+=hp;
		}
		int[][] damage=new int[2000][2000];
		for(int i=0;i<k;i++){
			int x=sc.nextInt()+500;
			int y=sc.nextInt()+500;
			int w=sc.nextInt();
			int h=sc.nextInt();
			int d=sc.nextInt();
			damage[y][x]+=d;damage[y][x+w+1]=-d;
			damage[y+h+1][x]-=d;damage[y+h+1][w+x+1]+=d;
		}
		for(int i=0;i<1000;i++){
			for(int j=1;j<1000;j++){
				damage[i][j]+=damage[i][j-1];
			}
		}
		for(int i=0;i<1000;i++){
			for(int j=1;j<1000;j++){
				damage[j][i]+=damage[j-1][i];
			}
		}
		int res=0;
		for(int i=0;i<1000;i++){
			for(int j=0;j<1000;j++){
				if(table[i][j]>damage[i][j])res+=table[i][j]-damage[i][j];
			}
		}
		System.out.println(res);
	}
}
0