結果
| 問題 | 
                            No.798 コレクション
                             | 
                    
| コンテスト | |
| ユーザー | 
                             ikd
                         | 
                    
| 提出日時 | 2018-08-05 00:44:01 | 
| 言語 | C++14  (gcc 13.3.0 + boost 1.87.0)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 299 bytes | 
| コンパイル時間 | 597 ms | 
| コンパイル使用メモリ | 62,464 KB | 
| 実行使用メモリ | 5,376 KB | 
| 最終ジャッジ日時 | 2024-06-28 16:53:31 | 
| 合計ジャッジ時間 | 2,881 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge4 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | WA * 3 | 
| other | WA * 11 RE * 12 | 
ソースコード
#include<iostream>
#include<cassert>
using namespace std;
#define rep(i,n) for(int i=0;i<(n);i++)
int main(){
  int n; cin>> n;
  assert(1<=n and n<=17);
  rep(_, n){
    int a, b; cin>> a>> b;
    assert(1<=a and a<=100000);
    assert(1<=b and b<=100000);
  }
  cout<< -1<< endl;
  return 0;
}
            
            
            
        
            
ikd