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

#1663. 【2022.10.19 联考】火柴棍

https://sjzezoj.com/submission/61028
This commit is contained in:
Baoshuo Ren 2022-10-19 18:47:26 +08:00
parent 776bfbc487
commit 077fe99d5d
Signed by: baoshuo
GPG Key ID: 00CB9680AB29F51A
22 changed files with 131 additions and 0 deletions

68
S2OJ/1663/1663.cpp Normal file
View File

@ -0,0 +1,68 @@
#include <iostream>
#include <cmath>
using std::cin;
using std::cout;
const char endl = '\n';
const int N = 1e5 + 5;
const int mod = 998244853;
int t, n, p[N], p1[N];
int main() {
std::ios::sync_with_stdio(false);
cin.tie(nullptr);
p1[0] = 1;
for (int i = 1; i <= 100000; i++) {
p[i] = (static_cast<long long>(p[i - 1]) * 10 % mod + 8) % mod;
p1[i] = static_cast<long long>(p1[i - 1]) * 10 % mod;
}
cin >> t;
while (t--) {
cin >> n;
int l = std::ceil(1.0 * n / 7);
if (n == 1) {
cout << -1 << endl;
} else if (n == 2) {
cout << 1 << endl;
} else if (n == 3) {
cout << 7 << endl;
} else if (n == 4) {
cout << 4 << endl;
} else if (n == 5) {
cout << 2 << endl;
} else if (n == 6) {
cout << 0 << endl;
} else if (n == 7) {
cout << 8 << endl;
} else if (n == 8) {
cout << 10 << endl;
} else if (n == 9) {
cout << 18 << endl;
} else if (n == 10) {
cout << 22 << endl;
} else if (n % 7 == 0) {
cout << p[l] << endl;
} else if (n % 7 == 1) {
cout << (static_cast<long long>(l - 2 > 0 ? p[l - 2] : 0) + static_cast<long long>(p1[l - 1])) % mod << endl;
} else if (n % 7 == 2) {
cout << (static_cast<long long>(l - 1 > 0 ? p[l - 1] : 0) + static_cast<long long>(p1[l - 1])) % mod << endl;
} else if (n % 7 == 3) {
cout << (static_cast<long long>(l - 3 > 0 ? p[l - 3] : 0) + static_cast<long long>(p1[l - 1]) * 2 % mod) % mod << endl;
} else if (n % 7 == 4) {
cout << (static_cast<long long>(l - 2 > 0 ? p[l - 2] : 0) + static_cast<long long>(p1[l - 1]) * 2 % mod) % mod << endl;
} else if (n % 7 == 5) {
cout << (static_cast<long long>(l - 1 > 0 ? p[l - 1] : 0) + static_cast<long long>(p1[l - 1]) * 2 % mod) % mod << endl;
} else { // n % 7 == 6
cout << (static_cast<long long>(l - 1 > 0 ? p[l - 1] : 0) + static_cast<long long>(p1[l - 1]) * 6 % mod) % mod << endl;
}
}
return 0;
}

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

Binary file not shown.

BIN
S2OJ/1663/data/stick1.ans (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1663/data/stick1.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1663/data/stick10.ans (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1663/data/stick10.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1663/data/stick2.ans (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1663/data/stick2.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1663/data/stick3.ans (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1663/data/stick3.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1663/data/stick4.ans (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1663/data/stick4.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1663/data/stick5.ans (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1663/data/stick5.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1663/data/stick6.ans (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1663/data/stick6.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1663/data/stick7.ans (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1663/data/stick7.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1663/data/stick8.ans (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1663/data/stick8.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1663/data/stick9.ans (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1663/data/stick9.in (Stored with Git LFS) Normal file

Binary file not shown.