CodeChef::Bowlers(Incorrect)
#include <bits/stdc++.h> #define boost ios :: sync_with_stdio ( 0 ); cin . tie ( 0 ) using namespace std ; int main (){ boost ; long long int t ; cin >> t ; while ( t --) { long long int n , k , l ; cin >> n >> k >> l ; long long int temp = k ; if ( k * l < n ) cout << - 1 << ' \n ' ; else ...