QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#736849#9627. 算术zzzcrqwqAC ✓1ms3980kbC++142.2kb2024-11-12 13:39:542024-11-12 13:39:58

Judging History

你现在查看的是最新测评结果

  • [2024-11-12 13:39:58]
  • 评测
  • 测评结果:AC
  • 用时:1ms
  • 内存:3980kb
  • [2024-11-12 13:39:54]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;

#define fin(filename) freopen(#filename".in", "r", stdin)
#define fout(filename) freopen(#filename".out", "w", stdout)
#define file(filename) fin(filename), fout(filename)
#define _f(i, a, b) for (int i = a; i <= b; ++i)
#define _d(i, a, b) for (int i = a; i >= b; --i)
using pii = pair<int, int>;
using ll = long long;
#define fi first
#define se second
#define all(container) container.begin(), container.end()
#define dubug() cerr << __LINE__ << '\n';

bool Mbe;

static constexpr int N = 2e5 + 5, mod = 998244353;

int n, a[15], sum;
priority_queue<int, vector<int>, greater<int>> q;
inline int ksm(int x, int y = mod - 2) {
  int ret = 1;
  while(y) {
    if(y & 1) ret = 1ll * ret * x % mod;
    x = 1ll * x * x % mod, y >>= 1;
  }
  return ret;
}

void solve() {
  sum = 0;
  int ans = 1;
  a[10] = 0;
  _f(i, 1, 9) cin >> a[i], sum += a[i];
  while(a[1] >= 2) {
    while(a[2] >= 2 && a[1]) {
      a[1]--, a[2]--, a[3]++;
    }
    if(a[1] >= 2) a[1] -= 2, a[2]++;
  }
  bool flg = a[1];
  _f(i, 2, 10) {
    if(a[i] && flg) {
      a[i]--, flg = 0, a[i + 1]++;
    }
    ans = 1ll *ans*ksm(i, a[i]) % mod;
  }
  // if(a[1] == 0) {
  //   _f(i, 1, 9) ans = 1ll * ans * ksm(i, a[i]) % mod;
  // } else if(a[1] == 1) {
  //   if(sum == 1) ans = 1;
  //   else {
  //     _f(i, 2, 9) ans = 1ll * ans * ksm(i, a[i]) % mod;
  //     _f(i, 2, 9) if(a[i]) ans = 1ll * ans * ksm(i) % mod * (i + 1) % mod;
  //   }
  // } else {
  //   // a[1] -= 2, ++a[2];
  //   _f(i, 1, 9) _f(j, 1, a[i]) q.emplace(i);
  //   while(q.top() == 1) {
  //     q.pop();
  //     auto it = q.top();
  //     q.pop();
  //     q.emplace(it + 1);
  //   }
  //   // _f(i, 1, a[1]) {
  //   //   auto it = q.top(); q.pop(); q.emplace(it + 1);
  //   // }
  //   while(q.size()) ans = 1ll * ans * q.top() % mod, q.pop();
  // }
  cout << ans << '\n';
}

bool Med;

signed main() {
    cerr << setprecision(3) << fixed << (&Mbe - &Med) / 1048576.0 << " MB\n";
    ios::sync_with_stdio(0);
    cin.tie(0), cout.tie(0);
    int tt; cin >> tt;
    while(tt--) solve();
    cerr << 1e3 * clock() / CLOCKS_PER_SEC << " ms\n";
    return 0;
}

// by zzzcr.

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3980kb

input:

7
5 3 0 0 0 0 0 0 0
4 1 1 1 0 0 0 0 0
1 0 0 0 0 0 0 0 0
1 0 0 0 0 0 0 0 1
1 0 0 0 0 0 0 0 2
99 88 77 66 55 44 33 22 11
100 90 80 70 60 50 40 30 20

output:

54
108
1
10
90
90553232
143532368

result:

ok 7 lines

Test #2:

score: 0
Accepted
time: 1ms
memory: 3856kb

input:

1000
22 80 50 23 35 71 81 70 96
40 33 36 2 51 52 96 5 32
56 35 85 13 58 80 26 14 31
60 21 8 19 79 5 94 44 33
85 55 10 59 76 98 28 22 69
14 72 40 14 100 68 5 18 69
95 42 51 0 32 97 37 34 85
54 33 18 40 34 10 72 72 68
81 47 80 23 23 68 40 3 71
58 7 36 79 89 83 5 68 16
30 3 82 79 35 28 30 55 88
17 86 2...

output:

376701872
321820208
765709043
819408880
639261805
521201354
7172464
780360907
240853384
151457742
298466126
416189734
124742738
161566750
493291429
481038778
409158325
951979430
783007793
438976523
440485591
163247072
78098984
275527515
308024444
168349368
423889166
168234582
827159852
914298923
465...

result:

ok 1000 lines

Test #3:

score: 0
Accepted
time: 1ms
memory: 3860kb

input:

1000
1 0 0 0 0 0 0 0 0
0 1 0 0 0 0 0 0 0
0 0 1 0 0 0 0 0 0
0 0 0 1 0 0 0 0 0
0 0 0 0 1 0 0 0 0
0 0 0 0 0 1 0 0 0
0 0 0 0 0 0 1 0 0
0 0 0 0 0 0 0 1 0
0 0 0 0 0 0 0 0 1
2 0 0 0 0 0 0 0 0
1 1 0 0 0 0 0 0 0
1 0 1 0 0 0 0 0 0
1 0 0 1 0 0 0 0 0
1 0 0 0 1 0 0 0 0
1 0 0 0 0 1 0 0 0
1 0 0 0 0 0 1 0 0
1 0 0 0...

output:

1
2
3
4
5
6
7
8
9
2
3
4
5
6
7
8
9
10
4
6
8
10
12
14
16
18
9
12
15
18
21
24
27
16
20
24
28
32
36
25
30
35
40
45
36
42
48
54
49
56
63
64
72
81
53234520
78732
944784
17744840
53234520
688747536
141958720
19131876
4374
9726857
668738521
35489680
11664
79851780
8748
104630853
551437603
234594227
96996101...

result:

ok 1000 lines