打赏

相关文章

293-Leetcode 回文数

注意int类型越界&#xff0c;如果数字是1234567899的话&#xff0c;反过来就是9987654321&#xff0c;会越界&#xff0c;所以用long long int class Solution { public:bool isPalindrome(int x){if (x < 0)return false;long long int count 0;long long int j x;whil…

AtCoder Beginner Contest 293

传送门 下午比赛累了&#xff0c;签了个到&#xff0c;待补充. A - Swap Odd and Even 模拟一下就行. Code&#xff1a; #include <bits/stdc.h>using i64 long long;int main() {std::ios::sync_with_stdio(false);std::cin.tie(nullptr);std::string s;std::cin >…

AtCoder Beginner Contest 293 题解

文章目录 A - Swap Odd and EvenB - Call the ID NumberC - Make Takahashi HappyD - Tying RopeE - Geometric ProgressionF - Zero or OneG - Triple IndexEx - Optimal Path Decomposition A - Swap Odd and Even https://atcoder.jp/contests/abc293/tasks/abc293_a 给出一…

Leetcode 293 翻转游戏

293. 翻转游戏 难度简单31 你和朋友玩一个叫做「翻转游戏」的游戏。游戏规则如下&#xff1a; 给你一个字符串 currentState &#xff0c;其中只含 和 - 。你和朋友轮流将 连续 的两个 "" 反转成 "--" 。当一方无法进行有效的翻转时便意味着游戏结束&a…

手机版浏览

扫一扫体验

微信公众账号

微信扫一扫加关注

返回
顶部