int f(int x) //算出x的每位數字和
{
int sum=0;
while(x)
{
sum+=x%10;
x/=10;
}
return sum;
}
void sol()
{
int t;
cin>>t;
while(t--)
{
int n;
cin>>n;
for(int i=n;;i++) //從n開始窮舉
{
int ans=__gcd(i,f(i));
if(ans>1) //如果所得結果>1則輸出
{
cout<<i<<endl;
break;
}
}
}
}
void sol()
{
int t;
cin>>t;
while(t--)
{
int n,w;
cin>>n>>w;
int x[n],y[n];
for(int i=0;i<n;i++)
{
cin>>x[i];
y[i]=w;
}
sort(x,x+n);
int ans=1;
for(int i=n-1;i>=0;i--)
{
for(int j=0;j<ans;j++)
{
if(y[j]>=x[i])
{
y[j]-=x[i];
break;
}
if(j==ans-1)
{
y[ans]-=x[i];
ans++;
break;
}
}
}
cout<<ans<<endl;
}
}
尚未AC
or
or
By clicking below, you agree to our terms of service.
New to HackMD? Sign up
Syntax | Example | Reference | |
---|---|---|---|
# Header | Header | 基本排版 | |
- Unordered List |
|
||
1. Ordered List |
|
||
- [ ] Todo List |
|
||
> Blockquote | Blockquote |
||
**Bold font** | Bold font | ||
*Italics font* | Italics font | ||
~~Strikethrough~~ | |||
19^th^ | 19th | ||
H~2~O | H2O | ||
++Inserted text++ | Inserted text | ||
==Marked text== | Marked text | ||
[link text](https:// "title") | Link | ||
 | Image | ||
`Code` | Code |
在筆記中貼入程式碼 | |
```javascript var i = 0; ``` |
|
||
:smile: | ![]() |
Emoji list | |
{%youtube youtube_id %} | Externals | ||
$L^aT_eX$ | LaTeX | ||
:::info This is a alert area. ::: |
This is a alert area. |
On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?
Please give us some advice and help us improve HackMD.
Syncing