1 条题解

  • 0
    @ 2026-07-20 17:59:11
    #pragma GCC optimize("O3")
    
    #include<bits/stdc++.h>
    using namespace std;
    
    void solve_problem___(){
        int h, w; cin >> h >> w;
        if(10000 * w >= 25 * h * h) {
            cout << "Yes" << endl;
        } else {
            cout << "No" << endl;
        }
    }
    
    signed main(){
        cin.tie(0), ios::sync_with_stdio(0);
        
        // freopen("test.in", "r", stdin);
        // freopen("test.out", "w", stdout);
        
        int tttttt = 2; // cin >> tttttt;
        while(tttttt --) solve_problem___();
        
        return 0;
    }
    
  • 1

信息

ID
1014
难度
1
分类
(无)
标签
递交数
4
已通过
2
通过率
50%
上传者