D. Buying Shovels1300 / 求约数
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了D. Buying Shovels1300 / 求约数相关的知识,希望对你有一定的参考价值。
https://codeforces.com/problemset/problem/1360/D
就是看可不可以整除,这不就是约数么,注意要不大于k
#include<bits/stdc++.h>
using namespace std;
int main(void)
{
int t; cin>>t;
while(t--)
{
int n,k; cin>>n>>k;
int ans=n;
for(int i=1;i<=n/i;i++)
{
if(n%i==0)
{
if(i<=k) ans=min(ans,n/i);
if(n/i<=k) ans=min(ans,n/(n/i));
}
}
cout<<ans<<endl;
}
return 0;
}
以上是关于D. Buying Shovels1300 / 求约数的主要内容,如果未能解决你的问题,请参考以下文章
Codeforces Round #546 (Div. 2) D. Nastya Is Buying Lunch