結果
問題 |
No.798 コレクション
|
ユーザー |
![]() |
提出日時 | 2019-03-15 14:06:50 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 382 bytes |
コンパイル時間 | 631 ms |
コンパイル使用メモリ | 67,968 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-01 19:40:53 |
合計ジャッジ時間 | 1,431 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 3 |
other | WA * 23 |
ソースコード
#include <algorithm> #include <cassert> #include <iostream> #include <vector> #define rep(i, n) for (int i = 0; i < (int)(n); i++) using namespace std; int main() { int n; cin >> n; assert(1 <= n and n <= 2000); rep(i, n) { int a, b; cin >> a >> b; assert(1 <= a and a <= 100000); assert(1 <= b and b <= 100000); } cout << -1 << endl; return 0; }