結果

問題 No.960 マンハッタン距離3
ユーザー %20
提出日時 2019-12-20 18:31:46
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 255 bytes
コンパイル時間 1,892 ms
コンパイル使用メモリ 198,468 KB
最終ジャッジ日時 2025-01-08 13:31:33
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 4
other WA * 216
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

int main(){cin.tie(0);ios::sync_with_stdio(false);
	int W,H;cin>>W>>H;
	int N;cin>>N;
	set<pair<int,int>>s;
	for(int i=0;i<N;++i){
		int x,y;cin>>x>>y;
		s.insert({x,y});
	}
	assert(s.size()==N);
	return 0;
}
0