0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-09 23:58:48 +00:00

#6248. 「CodePlus 2017 11 月赛」晨跑

https://loj.ac/s/1420425
This commit is contained in:
Baoshuo Ren 2022-03-23 14:19:09 +08:00
parent e1a8b84021
commit ab566c92ab
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68
41 changed files with 141 additions and 0 deletions

21
LibreOJ/6248/6248.cpp Normal file
View File

@ -0,0 +1,21 @@
#include <algorithm>
#include <iostream>
using std::cin;
using std::cout;
const char endl = '\n';
long long a, b, c;
inline long long lcm(long long a, long long b) {
return a / std::__gcd(a, b) * b;
}
int main() {
std::ios::sync_with_stdio(false);
cin >> a >> b >> c;
cout << lcm(a, lcm(b, c)) << endl;
return 0;
}

BIN
LibreOJ/6248/data/1.ans (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6248/data/1.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6248/data/10.ans (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6248/data/10.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6248/data/11.ans (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6248/data/11.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6248/data/12.ans (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6248/data/12.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6248/data/13.ans (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6248/data/13.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6248/data/14.ans (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6248/data/14.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6248/data/15.ans (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6248/data/15.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6248/data/16.ans (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6248/data/16.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6248/data/17.ans (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6248/data/17.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6248/data/18.ans (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6248/data/18.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6248/data/19.ans (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6248/data/19.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6248/data/2.ans (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6248/data/2.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6248/data/20.ans (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6248/data/20.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6248/data/3.ans (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6248/data/3.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6248/data/4.ans (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6248/data/4.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6248/data/5.ans (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6248/data/5.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6248/data/6.ans (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6248/data/6.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6248/data/7.ans (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6248/data/7.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6248/data/8.ans (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6248/data/8.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6248/data/9.ans (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6248/data/9.in (Stored with Git LFS) Normal file

Binary file not shown.