Upload via code

This commit is contained in:
2024-10-03 19:17:29 +08:00
parent 543ccf0fe0
commit b64d31db74
39 changed files with 1548 additions and 0 deletions

10
Luogu/小鱼的航程.cpp Normal file
View File

@ -0,0 +1,10 @@
#include <bits/stdc++.h>
using namespace std;
int main(){
long long x, n;
cin >> x >> n;
long long week;
week = (x + n) / 7 * 2;
cout << (n - week) * 250;
return 0;
}