Free Contest Testing Round 5 - TEST1

View as PDF

Submit solution

Points: 0.80 (partial)
Time limit: 1.0s
Memory limit: 256M

Problem type
Allowed languages
C, C++, Go, Java, Kotlin, Pascal, PyPy, Python, Rust, Scratch

In case the statement didn't load correctly, you can download the statement here: Statement

Lưu ý: các bạn không nhập, xuất dữ liệu bằng file kể cả khi đề bài có yêu cầu. Đọc, ghi dữ liệu được thực hiện ở stdin và stdout.


Comments

Please read the guidelines before commenting.



  • -3
    tdkhang  commented on Feb. 20, 2024, 9:05 a.m.

    include <iostream>

    using namespace std; int main() { int mangA[10000],i,n,j,vyl,tkq,count; cin>>n;

    for(i=0;i&lt;n;i++)
        cin>>mangA[i];
    
    vyl=mangA[0];
    tkq=0;
    
    for(i=0;i&lt;n;i++)
    {
        count=1;
        for(j=i+1;j&lt;n;j++)
            if(mangA[i]==mangA[j])
                count++;
        if (vyl&lt;count);{
            vyl=count;
            tkq=mangA[i];}
    }
    return 0;
    

    }


  • -2
    tdkhang  commented on Feb. 20, 2024, 8:24 a.m.

    include <iostream>

    using namespace std; int main(){

    }