/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 2ms 516.0 KiB
#2 Accepted 2ms 328.0 KiB
#3 Accepted 2ms 500.0 KiB
#4 Accepted 2ms 332.0 KiB
#5 Accepted 2ms 480.0 KiB
#6 Accepted 2ms 496.0 KiB

Code


#include <iostream>
using namespace std;
int main() {
    int a, b, c, d;
    cin >> a >> b >> c >> d;
    int smallest = min(min(a, b), min(c, d));
    int largest = max(max(a, b), max(c, d));
    cout << smallest << endl;
    cout << largest << endl;
    return 0;
}

Information

Submit By
Type
Submission
Problem
P1022 Minmax
Contest
Brain booster - 1
Language
C++17 (G++ 13.2.0)
Submit At
2023-12-31 15:15:06
Judged At
2024-10-03 14:05:35
Judged By
Score
100
Total Time
2ms
Peak Memory
516.0 KiB