摘要:
比赛链接:https://atcoder.jp/contests/abc163/tasks A - Circle Pond 题意 由半径输出圆周长。 代码 #include <bits/stdc++.h> using namespace std; int main() { double r; cin 阅读全文
摘要:
比赛链接:https://codeforces.com/contest/1295 A - Display The Number 题意 输出按照电子钟表的格式用 n 段能组成的最大值。(1≤n≤105) 思路 每两段组成 1 增加位长,如有余与数首的 1 组成 7。 代码 #include <bits 阅读全文