結果

問題 No.1338 Giant Class
ユーザー tailstails
提出日時 2021-01-15 21:39:27
言語 cLay
(20240714-1)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 135 bytes
コンパイル時間 2,214 ms
コンパイル使用メモリ 179,192 KB
実行使用メモリ 11,776 KB
最終ジャッジ日時 2024-07-05 14:56:57
合計ジャッジ時間 5,456 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 14 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 46 ms
9,088 KB
testcase_07 AC 67 ms
11,008 KB
testcase_08 AC 41 ms
8,704 KB
testcase_09 AC 39 ms
8,192 KB
testcase_10 AC 75 ms
11,520 KB
testcase_11 AC 7 ms
5,376 KB
testcase_12 AC 42 ms
8,320 KB
testcase_13 AC 40 ms
8,960 KB
testcase_14 AC 11 ms
5,376 KB
testcase_15 AC 16 ms
5,632 KB
testcase_16 AC 6 ms
5,376 KB
testcase_17 AC 41 ms
8,960 KB
testcase_18 AC 11 ms
5,376 KB
testcase_19 AC 19 ms
6,144 KB
testcase_20 AC 78 ms
11,776 KB
testcase_21 AC 78 ms
11,776 KB
testcase_22 AC 81 ms
11,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

{
	map<ll,ll>amap;
	ll@h,@w,@q,n=h*w;
	rep(q){
		ll@y,@x;
		y=h+1-y;
		if(amap[x]<y){
			n-=y-amap[x];
			amap[x]=y;
		}
		wt(n);
	}
}
0