1 条题解

  • 1
    @ 2026-3-24 17:43:50

    #include using namespace std;

    int main() { int t, n, m;

    cin >> t >> n >> m;
    if (t * m >= n) {
        cout << "yes" << endl;
    } else {
        cout << "no" << endl;
    }
    
    return 0;
    

    }

  • 1

信息

ID
475
时间
1000ms
内存
64MiB
难度
9
标签
递交数
12
已通过
7
上传者