Compare commits
No commits in common. "83fac884dc899873b922a55d25f434f790139411" and "a5afa671a64f50a9aaf9cfc46e6fda1c361c5a2c" have entirely different histories.
83fac884dc
...
a5afa671a6
@ -9,7 +9,7 @@ int main()
|
|||||||
if (a[i] == 1) {
|
if (a[i] == 1) {
|
||||||
num[i] = ++sum;
|
num[i] = ++sum;
|
||||||
}
|
}
|
||||||
}/*
|
}
|
||||||
now[1]=1;
|
now[1]=1;
|
||||||
do{
|
do{
|
||||||
t++;
|
t++;
|
||||||
@ -21,13 +21,12 @@ int main()
|
|||||||
if(bi<sum){
|
if(bi<sum){
|
||||||
sum=bi;
|
sum=bi;
|
||||||
}
|
}
|
||||||
}while(t<w);*/
|
}while(t<w);
|
||||||
|
cout<<sum;
|
||||||
|
/*
|
||||||
for(int i=1;i<=n;i++){
|
for(int i=1;i<=n;i++){
|
||||||
for(int j=1;j<=k;j++){
|
for(int j=1;j<=k;j++){
|
||||||
if(i==j){
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}*/
|
||||||
cout<<sum;
|
|
||||||
}
|
}
|
@ -1,3 +0,0 @@
|
|||||||
# 标题
|
|
||||||
|
|
||||||
* 内容
|
|
@ -1,3 +0,0 @@
|
|||||||
# 标题
|
|
||||||
|
|
||||||
* 内容
|
|
@ -1,6 +0,0 @@
|
|||||||
#include <iostream>
|
|
||||||
|
|
||||||
int main()
|
|
||||||
{
|
|
||||||
std::cout << "Hello Easy C++ project!" << std::endl;
|
|
||||||
}
|
|
BIN
time/main.exe
BIN
time/main.exe
Binary file not shown.
@ -1,7 +0,0 @@
|
|||||||
22 00
|
|
||||||
7 30
|
|
||||||
8 00
|
|
||||||
9 50
|
|
||||||
14 20
|
|
||||||
15 13
|
|
||||||
16 20
|
|
@ -1,6 +0,0 @@
|
|||||||
18 00
|
|
||||||
7 30
|
|
||||||
12 04
|
|
||||||
12 22
|
|
||||||
13 03
|
|
||||||
13 14
|
|
@ -1,12 +0,0 @@
|
|||||||
## z:\Chao\src\time\test\ingame.txt
|
|
||||||
2020/03/26 ÖÜËÄ 16:52:58.83
|
|
||||||
60:47
|
|
||||||
-----------------------------------------------
|
|
||||||
Process exited after 210 ms with return value 0
|
|
||||||
|
|
||||||
## z:\Chao\src\time\test\instudy.txt
|
|
||||||
2020/03/26 ÖÜËÄ 16:52:58.83
|
|
||||||
31:47
|
|
||||||
-----------------------------------------------
|
|
||||||
Process exited after 90 ms with return value 0
|
|
||||||
|
|
@ -1,24 +0,0 @@
|
|||||||
#include<iostream>
|
|
||||||
#include<fstream>
|
|
||||||
using namespace std;
|
|
||||||
ifstream fin("order.in");
|
|
||||||
ofstream fout("order.out");
|
|
||||||
int main() {
|
|
||||||
long long anss,ansf;
|
|
||||||
int s,f;
|
|
||||||
fin>>anss>>ansf;
|
|
||||||
while (fin>>s>>f)
|
|
||||||
{
|
|
||||||
ansf-=f;
|
|
||||||
if(ansf<0){
|
|
||||||
anss--;
|
|
||||||
ansf+=60;
|
|
||||||
}
|
|
||||||
if(ansf>59){
|
|
||||||
anss++;
|
|
||||||
ansf-=60;
|
|
||||||
}
|
|
||||||
anss-=s;
|
|
||||||
}
|
|
||||||
fout<<anss<<":"<<ansf;
|
|
||||||
}
|
|
@ -1,24 +0,0 @@
|
|||||||
#include <iostream>
|
|
||||||
using namespace std;
|
|
||||||
int main()
|
|
||||||
{
|
|
||||||
long long anss, ansf, chus = 0, chuf = 0;
|
|
||||||
int s, f;
|
|
||||||
cin >> anss >> ansf;
|
|
||||||
while (cin >> s >> f) {
|
|
||||||
chuf += ansf - f;
|
|
||||||
if (chuf < 0) {
|
|
||||||
chus--;
|
|
||||||
chuf += 60;
|
|
||||||
}
|
|
||||||
if (chuf > 59) {
|
|
||||||
chus++;
|
|
||||||
chuf -= 60;
|
|
||||||
}
|
|
||||||
chus += anss - s;
|
|
||||||
}
|
|
||||||
cout << chus << ":";
|
|
||||||
if (chuf < 10)
|
|
||||||
cout << "0";
|
|
||||||
cout << chuf;
|
|
||||||
}
|
|
BIN
time/timecin.exe
BIN
time/timecin.exe
Binary file not shown.
@ -1,5 +0,0 @@
|
|||||||
# 地球与地图
|
|
||||||
|
|
||||||
* 地球的形状与大小
|
|
||||||
first·4: 麦哲伦率/环球一周/大太印/证实球体
|
|
||||||
clearest
|
|
@ -1,3 +0,0 @@
|
|||||||
# 标题
|
|
||||||
|
|
||||||
* 内容
|
|
@ -1,6 +0,0 @@
|
|||||||
#include <iostream>
|
|
||||||
|
|
||||||
int main()
|
|
||||||
{
|
|
||||||
std::cout << "Hello Easy C++ project!" << std::endl;
|
|
||||||
}
|
|
BIN
地理/main.exe
BIN
地理/main.exe
Binary file not shown.
@ -1,7 +0,0 @@
|
|||||||
## z:\Chao\src\Template\test\in.txt
|
|
||||||
2020/03/14 ÖÜÁù 11:41:28.68
|
|
||||||
Hello Easy C++ project!
|
|
||||||
|
|
||||||
-----------------------------------------------
|
|
||||||
Process exited after 200 ms with return value 0
|
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user