Wrong Answer
Code
#include <iostream>
#include <cmath>
using namespace std;
int m(int x) {
return sqrt(x);
}
int main() {
int t;
cin >> t;
while (t--) {
int n;
cin >> n;
cout << m(n) << endl;
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1052 Yet Another Array Partition
- Contest
- Brain Booster #3
- Language
- C++20 (G++ 13.2.0)
- Submit At
- 2024-05-06 15:08:39
- Judged At
- 2024-11-11 03:35:09
- Judged By
- Score
- 5
- Total Time
- 2ms
- Peak Memory
- 324.0 KiB