摘要: Codeforces Round 905 (Div. 3) A. Morning 题意:操作:显示,向前走都为一次操作;目标:显示这四个数 思路:0->10,然后依次作差就行 #include <bits/stdc++.h> using namespace std; void solve(){ ch 阅读全文
posted @ 2023-11-24 18:57 goodluckbear 阅读(99) 评论(0) 推荐(0)
摘要: Codeforces Round 909 (Div.3) A. Game with Integers 水题,就是可以被3整除的输出“Second”,不能被3整除的输出“First” #include<iostream> using namespace std; int main() { int t; 阅读全文
posted @ 2023-11-24 15:40 goodluckbear 阅读(77) 评论(0) 推荐(0)