题目描述Deque
For a dynamic array A={a0,a1,…} of integers, perform a sequence of the following operations:
0-push(d, x): Add element x at the begining of A, if d=0. Add element x at the end of A, if d=1.
1-randomAccess(p): Print element ap.
2-pop(d): Delete the first element of A, if d=0. Delete the last element of A, if d=1. A is a 0-origin array and it is empty in the initial state.
输入The input is given in the following format.
q
query1
query2
:
query n
Each query...
事情,是这样的。 有这么一天双休日的中午。 我刚把我衣服扔进了洗衣机,然后拿了个小板凳坐在旁边发呆。 然后突然想到这么无聊干脆玩会阴阳师好了,于是从斗篷帽子里掏出我的手机登录了阴阳师。 看着更新公告里写着的新SSR式神一目连感叹了一下:我要是能有个一目连该多好啊 看了一眼我家帅气的扛把子咕咕,正准备肝困难的时候发现庭院里那一串灯笼里的调查问卷有蝴蝶在绕,于是点进去填了一波在最结尾写上了我当时的愿望:我想要一目连。 然后奖励了一个符,顺手就抽了。本来以为又是R卡,没想到手机震动了一下。 握草!!!一目连!!!! 当时我就激动的站了起来使劲看了一眼然后仰天大笑以及截图装逼。
[admonition title=”问题” color=”indigo”]SSR全称为superior super rare,特级超稀有。一般为卡牌类游戏最高稀有等级。 题目是给出三个字符,求其升级到SSR所需要的次数。 最小为AAA,最大为SSR; SSQ升级到SSR需要升级1次, SRR升级到SSR需要升级19次。[/admonition]
输入第一行输入一个整数T(代表T...
题目描述输入一个不多于5位的正整数,按高位到低位的顺序输出各位上的数字,末尾换行。 注意:确保输入的正整数的位数不多于5。
输入一个不多于5位的正整数
输出从高位到低位依次输出各位上的数字,中间以空格分隔的。 注意末尾的换行。
#include<bits/stdc++.h>using namespace std;int main(){ int x,t; cin>>x; if(x>9999){ t=x; t=t/10000; cout<<t<<” “; x=x%10000; } if(x>999&&x<=9999){ t=x; t=t/1000; cout<<t<<” “; x=x%1000; } if(x>99&...
题目描述设圆半径 r,圆柱高 h 求圆周长 C1、圆面积Sa、圆球表面积 Sb、圆球体积 Va、圆柱体积 Vb。 用scanf输入数据,输出计算结果,输出时要求文字说明,取小数点后两位数字。请编程序。 π=3.141592653
输入两个浮点数,r和h
输出圆周长C1、圆面积Sa、圆球表面积Sb、圆球体积Va、圆柱体积Vb。 保留两位小数,每个结果后换行。
#include<bits/stdc++.h>using namespace std;#define pi 3.141592653int main() { double r, h; double C1, Sa, Sb, Va, Vb; scanf(“%lf %lf”, &r, &h); C1 = 2 * pi * r; Sa = pi * r * r; Sb = 4 * pi * r * r; Va = (4 * pi * r * r * r) / 3; Vb = pi * r *...
题目描述Simple Calculator Write a program which reads two integers a, b and an operator op, and then prints the value of a op b. The operator op is ‘+’, ‘-‘, ‘*’ or ‘/’ (sum, difference, product or quotient). The division should truncate any fractional part.
输入The input consists of multiple datasets. Each dataset is given in the following format. a op b The input ends with a single ‘?’. Your program should not process for this terminal symbol.
输出For each dataset, print the value in a line.
...
1.已测试配套环境的兼容版本CPU版本
Python 版本
编译器
构建工具
tensorflow-2.6.0
3.6-3.9
MSVC 2019
Bazel 3.7.2
tensorflow-2.5.0
3.6-3.9
MSVC 2019
Bazel 3.7.2
tensorflow-2.4.0
3.6-3.8
MSVC 2019
Bazel 3.1.0
tensorflow-2.3.0
3.5-3.8
MSVC 2019
Bazel 3.1.0
tensorflow-2.2.0
3.5-3.8
MSVC 2019
Bazel 2.0.0
tensorflow-2.1.0
3.5-3.7
MSVC 2019
Bazel 0.27.1-0.29.1
tensorflow-2.0.0
3.5-3.7
MSVC 2017
Bazel 0.26.1
tensorflow-1.15.0
3.5-3.7
MSVC 2017
Bazel 0.26.1
tensorflow-1.14.0
3.5-3.7
MSVC 2017
Bazel 0.24.1-0.25.2
tensorflow-1.13...
题目描述求矩阵的两对角线上的元素之和
输入矩阵的行数N 和一个N∗N的整数矩阵ai,j1≤N≤10每一个元素都是整数,范围[-100,100]
输出所输矩阵的两对角线上的元素之和
#include<bits/stdc++.h>using namespace std;int a[100][100];int n, x, y, sum = 0;int main() { cin >> n; for (x = 0; x < n; x++) { for (y = 0; y < n; y++) { cin >> a[x][y]; } } for (x = 0; x < n; x++) { for (y = 0; y < n; y++) { if (x + y == n - 1 x == y) { ...
题目描述定义一个包括年、月、日的结构体变量,读入年、月、日,计算该日在当年中是第几天。注意闰年问题。 请写一个函数days实现计算,将读入的结构体变量传递给days函数,计算后将答案返回给main函数进行输出。
输入三个整数,分别表示年、月、日。保证输入是实际存在的日期,且年份在1000至3000之间(包含1000和3000)。
输出输出该日期是一年中的第几天。 请注意行尾输出换行。
#include<bits/stdc++.h>using namespace std;struct date { int y, m, d; inline bool leap() { return y % 4 == 0 && y % 100 != 0 y % 400 == 0; } inline int getMonthDay(int m) { if (m == 1 m == 3 m == 5 m...
题目描述给定两个整数$n$,$m$, $0 < n < m < 10^6$ 输出$1/n^2+1/(n+1)^2+….+1/m^2$保留5位小数,例如$n=2$, $m=4$ 答案是$0.42361$ $n=65536$ $m=655360$ 答案是$0.00001$。
输入有多组测试数据,每一行有$n m$
输出$1/n^2+1/(n+1)^2+….+1/m^2$保留5位小数
123456789101112131415#include<bits/stdc++.h>using namespace std;int main(){ int n,m; long double s=0; while(scanf("%d %d",&n,&m)!=EOF){ while(n<=m){ long double nn=(int)n; ...