結果

問題 No.647 明太子
ユーザー Noiri
提出日時 2019-02-27 10:46:42
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 531 bytes
コンパイル時間 1,989 ms
コンパイル使用メモリ 170,264 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-23 05:02:58
合計ジャッジ時間 2,998 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3 WA * 1
other AC * 17 WA * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    int n;
    cin >> n;
    vector<int> a(n), b(n);
    for(int i=0; i<n; i++) cin >> a[i] >> b[i];

    int m;
    cin >> m;
    vector<int> ans(m);

    for(int i=0; i<m; i++){
        int x, y;
        cin >> x >> y;
        for(int j=0; j<n; j++){
            if(a[j] >= x && b[j] <= y) ans[i]++;
        }
    }

    int max_n = *max_element(ans.begin(), ans.end());
    for(int i=0; i<m; i++){
        if(ans[i] == max_n) cout << i+1 << endl;
    }

    return 0;
}
0