为什么80分,求大佬看一下

P1150 Peter 的烟

考虑一下当成数学题用公式吧
by William_Chen_123 @ 2018-10-10 17:27:12


希望更丰富的展现?使用Markdown
by peppaking8 @ 2018-11-12 18:09:24


我也80,不知为啥 ``` #include<bits/stdc++.h> using namespace std; int n,k; int main() { cin>>n>>k; cout<<n+n/k; return 0; } ```
by ♂蒟·蒻 @ 2018-11-23 21:38:20


```cpp #include<bits/stdc++.h> using namespace std; int main() { int n,k,t; cin>>n>>k; cout<<n+(n-1)/(k-1); return 0; } ``` AC了
by 零之执行人 @ 2018-12-16 19:48:24


我也80. ``` #include<iostream> #include<cstdio> #include<cstring> using namespace std; int main() { int n,k,cue,tre; cin>>n>>k; cue=n; if(n/k>=1) tre=n/k; cue+=tre; cout<<cue; return 0; } ```
by D447H @ 2019-07-29 14:52:11


|