Code
#include <bits/stdc++.h>
#pragma GCC optimize("Ofast")
using namespace std;
void solve(int cs) {
int a[3];
for (int i = 0; i < 3; i++) cin >> a[i];
sort(a, a + 3);
if (a[0] + a[1] > a[2]) cout << "YES\n";
else cout << "NO\n";
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int tc = 1;
cin >> tc;
for (int cs = 1; cs <= tc; cs++) {
solve(cs);
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1047 3buj
- Language
- C++20 (G++ 13.2.0)
- Submit At
- 2024-07-10 18:41:10
- Judged At
- 2024-11-11 03:27:57
- Judged By
- Score
- 100
- Total Time
- 2ms
- Peak Memory
- 748.0 KiB