0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-08 14:18:47 +00:00

#1618. 【EOJ Lengthy Round】代数数

https://sjzezoj.com/submission/64417
This commit is contained in:
Baoshuo Ren 2022-11-15 16:47:37 +08:00
parent feea367892
commit f1d4d73a22
Signed by: baoshuo
GPG Key ID: 00CB9680AB29F51A
4 changed files with 33 additions and 0 deletions

24
S2OJ/1618/1618.cpp Normal file
View File

@ -0,0 +1,24 @@
#include <iostream>
using std::cin;
using std::cout;
const char endl = '\n';
int main() {
std::ios::sync_with_stdio(false);
cin.tie(nullptr);
int t;
cin >> t;
while (t--) {
int l, r;
cin >> l >> r;
cout << r - l + 1 << endl;
}
return 0;
}

BIN
S2OJ/1618/data/data1.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1618/data/data1.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1618/data/problem.conf (Stored with Git LFS) Normal file

Binary file not shown.