AtCoder算法竞技平台简介 AtCoder是日本最大的算法竞技网站,域名为http://atcoder.jp/(注意http://www.atcoder.jp/ 是其官网)。AtCoder支持日语和英语。 AtCoder每周六北京时间20:00(日本标准时间则为21:00)会有两场比赛,AtCoder Beginner Contest和AtCoder Regular Contest。这两场比赛是同时进行的,每个参赛者...
1、今晚(5月17日)20点在B站开始 AtCoder 初学者竞赛 353 比赛题解直播讲解 2、本周日(5月19日)晚上19点在B站开始 AtCoder Beginner Contest 354的题解直播讲解 3、观看方式: 复制下方链接或直接扫描二维码,PC端建议使用chrome浏览器 https://live.bilibili.com/21371611?live_from=84002 或识别下方二维码查看:...
We will hold Toyota Programming Contest 2024#4(AtCoder Beginner Contest 348). Contest URL: https://atcoder.jp/contests/abc348 Start Time: http://www.timeanddate.com/worldclock/fixedtime.html?iso=20240406T2100&p1=248 Duration: 100 minutes Writer: MtSaka, Aotsuki Tester: Nyaan, math957963 ...
We will hold AtCoder Beginner Contest 199(Sponsored by Panasonic). ,satashunYoshikaMiyafuji Rated range: ~ 1999 The point values will be 100-200-300-400-500-600. We are looking forward to your participation! If any of the vertices of a component have degree 3 or higher so our total answ...
AtCoder Beginner Contest 170 比赛链接:https://atcoder.jp/contests/abc170A - Five Variables题意55 个数中有 11 个00,判断是第几个。代码#include <bits/stdc++.h> using namespace std; int main() { for (int i = 1; i <= 5; i++) { int x; cin >> x; if (x == 0) { cout ...
AtCoder Beginner Contest 168 比赛链接:https://atcoder.jp/contests/abc168/tasks A - ∴ (Therefore) 题意 给出一个由数字组成的字符串 ss,要求如下: 如果ss 以2,4,5,7,9 结尾,输出 "hon" 如果ss 以0,1,6,8 结尾,输出 "pon" 如果ss 以3 结尾,输出 "bon" 代码 #include <bits/stdc++.h>...
AtCoder Beginner Contest 172 比赛链接:https://atcoder.jp/contests/abc172/tasksA - Calc题意给出一个正整数 aa,计算 a+a2+a3a+a2+a3。(1≤a≤101≤a≤10)代码#include <bits/stdc++.h> using namespace std; int main() { int a; cin >> a; cout << a + a * a + a * a * a; ...
AtCoder Beginner Contest 169 比赛链接:https://atcoder.jp/contests/abc169/tasksA - Multiplication 1#include <bits/stdc++.h> using namespace std; int main() { int a, b; cin >> a >> b; cout << a * b << "\n"; }B - Multiplication 2题...
AtCoder Beginner Contest 171 比赛链接:https://atcoder.jp/contests/abc171/tasksA - αlphabet题意给出一个字母,如果为大写输出 'A',如果为小写输出 'a' 。代码#include <bits/stdc++.h> using namespace std; int main() { char c; cin >> c; cout << (isupper(c) ? 'A' : 'a'); }B...
AtCoder Beginner Contest 163 比赛链接:https://atcoder.jp/contests/abc163/tasksA - Circle Pond题意由半径输出圆周长。代码#include <bits/stdc++.h> using namespace std; int main() { double r; cin >> r; cout << 2 * 3.14 * r; }B...