/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 320.0 KiB
#2 Accepted 1ms 324.0 KiB
#3 Accepted 1ms 388.0 KiB
#4 Accepted 1ms 324.0 KiB
#5 Accepted 1ms 752.0 KiB
#6 Accepted 1ms 532.0 KiB

Code

#include <bits/stdc++.h>
using namespace std;
int main()
{

    int a[4];
    for (int i = 0; i < 4; i++)
    {
        cin >> a[i];
    }
    int min = INT_MAX, max = INT_MIN;
    for (int i = 0; i < 4; i++)
    {
        if (a[i] < min)
            min = a[i];
    }
    for (int i = 0; i < 4; i++)
    {
        if (a[i] > max)
        {
            max = a[i];
        }
    }
    cout << min <<"\n"<< max << endl;

    return 0;
}

Information

Submit By
Type
Submission
Problem
P1022 Minmax
Contest
Brain booster - 1
Language
C++20 (G++ 13.2.0)
Submit At
2023-12-31 13:32:53
Judged At
2024-10-03 14:06:34
Judged By
Score
100
Total Time
1ms
Peak Memory
752.0 KiB