結果
| 問題 | No.960 マンハッタン距離3 |
| コンテスト | |
| ユーザー |
%20
|
| 提出日時 | 2019-12-20 18:31:46 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 255 bytes |
| 記録 | |
| コンパイル時間 | 1,290 ms |
| コンパイル使用メモリ | 214,876 KB |
| 実行使用メモリ | 8,320 KB |
| 最終ジャッジ日時 | 2026-06-08 10:03:06 |
| 合計ジャッジ時間 | 11,435 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 4 |
| other | WA * 216 |
ソースコード
#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;
}
%20