답안 #995228

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
995228 2024-06-08T17:13:17 Z ASGA_RedSea Examination (JOI19_examination) C++17
0 / 100
3000 ms 2236 KB
/**

                                    * بسم الله الرحمن الرحيم *

                ﴾ رَبِّ اشْرَحْ لِي صَدْرِي * وَيَسِّرْ لِي أَمْرِي * وَاحْلُلْ عُقْدَةً مِّن لِّسَانِي * يَفْقَهُوا قَوْلِي ﴿

*/

/// author : "ASGA"

#pragma GCC optimize("Ofast")
#include <bits/stdc++.h>

using namespace std;

signed main(){
    ios_base::sync_with_stdio(0);cin.tie(0);

    int n,q,x,y,z,ans;cin >> n >> q;
    vector <pair <int,int>> a(n);
    for(auto& [i,j] : a)cin >> i;
    while(q--){
        cin >> x >> y >> z;
        ans = 0;
        for(const auto& [i,j] : a)ans += (x <= i && y <= j && z <= i + j);
        cout << ans << '\n';
    }

    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 3074 ms 2236 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 3074 ms 2236 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -