上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 36 下一页
摘要: # 600A. Extract Numbers 划分一下然后特判即可。 ```cpp #include using namespace std; int32_t main() { string s , t = ""; cin >> s; vector a , b; s += ";"; for( au 阅读全文
posted @ 2023-08-04 20:20 PHarr 阅读(10) 评论(0) 推荐(0) 编辑
摘要: # A. Berland Poker 先尽可能的吧小丑给一个人,在把剩下的小丑尽可能的平分,最后计算差值即可。 ```cpp #include using namespace std; void solve() { int n, m, k, t; cin >> n >> m >> k, t = n 阅读全文
posted @ 2023-08-02 17:38 PHarr 阅读(21) 评论(0) 推荐(0) 编辑
摘要: https://codeforces.com/contest/1487 # A. Arena 统计与最小值不同的数字数量。 ```cpp #include using namespace std; #define int long long const int M = (1 > n; vector 阅读全文
posted @ 2023-08-02 17:38 PHarr 阅读(6) 评论(0) 推荐(0) 编辑
摘要: # A - 把你砍成两半! 在本地找规律就会发现,当$a_1$确定时,$a_i$一定是$a_1$的倍数。所以答案就是 $$ \sum C_{\frac{n}{a_1}-1}^{k-1} $$ ```cpp #include using namespace std; #define int long 阅读全文
posted @ 2023-08-02 17:38 PHarr 阅读(50) 评论(0) 推荐(1) 编辑
摘要: # A. Calandar ```cpp #include using namespace std; #define int long long #define mp make_pair typedef pair pii; typedef pair psi; int res = LLONG_MIN; 阅读全文
posted @ 2023-08-02 12:47 PHarr 阅读(16) 评论(0) 推荐(0) 编辑
摘要: # A - Chord ```cpp #include using namespace std; int32_t main() { ios::sync_with_stdio(false), cin.tie(nullptr), cout.tie(nullptr); string s; cin >> s 阅读全文
posted @ 2023-07-31 19:40 PHarr 阅读(37) 评论(0) 推荐(0) 编辑
摘要: # A. Two Rival Students 让两个人向两侧走就好了。 ```cpp #include using namespace std; void solve(){ int n , x , a , b; cin >> n >> x >> a >> b; if( a > b ) swap( 阅读全文
posted @ 2023-07-28 15:52 PHarr 阅读(6) 评论(0) 推荐(0) 编辑
摘要: # 数字三角形 ```cpp #include using namespace std; #define int long long int32_t main() { ios::sync_with_stdio(false), cin.tie(nullptr); int n; while( cin > 阅读全文
posted @ 2023-07-28 09:36 PHarr 阅读(3) 评论(0) 推荐(0) 编辑
摘要: # A. Escalator Conversations ```cpp #include using namespace std; #define int long long void solve(){ int n , m , k ,H; cin >> n >> m >> k >> H; vecto 阅读全文
posted @ 2023-07-26 19:50 PHarr 阅读(76) 评论(0) 推荐(0) 编辑
摘要: # A-雨 ```cpp #include using namespace std; #define int long long void solve() { vector a(4); int x; for( auto &i : a ) cin >> i; cin >> x; for( auto i 阅读全文
posted @ 2023-07-26 19:49 PHarr 阅读(6) 评论(0) 推荐(0) 编辑
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 36 下一页