QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#155294#5678. Busy As a Beergnerdplayer#AC ✓2ms3676kbC++20571b2023-09-01 15:26:182023-09-01 15:26:18

Judging History

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

  • [2023-09-01 15:26:18]
  • 评测
  • 测评结果:AC
  • 用时:2ms
  • 内存:3676kb
  • [2023-09-01 15:26:18]
  • 提交

answer

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

using i64 = long long;

int main() {
    cin.tie(nullptr)->sync_with_stdio(false);
    
    auto solve = [&]() {
        i64 m, n;
        cin >> m >> n;

        i64 odd = (n + 1) / 2, even = n / 2;

        i64 all = (5 * m + 1) * odd + m * even;
        if (n % 2 == 0) {
            all += 2 * (m - 1);
        }

        i64 sub = odd * m + even * (m - 1);
        sub = (sub + 1) / 2;

        i64 ans = all - sub + 1;
        cout << ans << '\n';
    };

    solve();

    return 0;
}


Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 2ms
memory: 3584kb

input:

2 1

output:

11

result:

ok single line: '11'

Test #2:

score: 0
Accepted
time: 0ms
memory: 3664kb

input:

3 3

output:

32

result:

ok single line: '32'

Test #3:

score: 0
Accepted
time: 2ms
memory: 3596kb

input:

2 2

output:

14

result:

ok single line: '14'

Test #4:

score: 0
Accepted
time: 2ms
memory: 3532kb

input:

1000000 1000000

output:

2500002749999

result:

ok single line: '2500002749999'

Test #5:

score: 0
Accepted
time: 0ms
memory: 3656kb

input:

2 1000000

output:

5750003

result:

ok single line: '5750003'

Test #6:

score: 0
Accepted
time: 2ms
memory: 3588kb

input:

1000000 1

output:

4500002

result:

ok single line: '4500002'

Test #7:

score: 0
Accepted
time: 2ms
memory: 3600kb

input:

64 64

output:

10415

result:

ok single line: '10415'

Test #8:

score: 0
Accepted
time: 2ms
memory: 3552kb

input:

2 64

output:

371

result:

ok single line: '371'

Test #9:

score: 0
Accepted
time: 2ms
memory: 3588kb

input:

64 2

output:

448

result:

ok single line: '448'

Test #10:

score: 0
Accepted
time: 2ms
memory: 3552kb

input:

3 3

output:

32

result:

ok single line: '32'

Test #11:

score: 0
Accepted
time: 2ms
memory: 3616kb

input:

100 50

output:

12736

result:

ok single line: '12736'

Test #12:

score: 0
Accepted
time: 0ms
memory: 3676kb

input:

50000 25000

output:

3125118749

result:

ok single line: '3125118749'

Test #13:

score: 0
Accepted
time: 2ms
memory: 3584kb

input:

25000 50000

output:

3125087499

result:

ok single line: '3125087499'

Test #14:

score: 0
Accepted
time: 2ms
memory: 3584kb

input:

2017 2023

output:

10206530

result:

ok single line: '10206530'

Test #15:

score: 0
Accepted
time: 2ms
memory: 3608kb

input:

2 2023

output:

11637

result:

ok single line: '11637'

Test #16:

score: 0
Accepted
time: 2ms
memory: 3584kb

input:

2023 1

output:

9105

result:

ok single line: '9105'

Test #17:

score: 0
Accepted
time: 0ms
memory: 3660kb

input:

2023 101

output:

514930

result:

ok single line: '514930'

Test #18:

score: 0
Accepted
time: 0ms
memory: 3668kb

input:

12348 5554

output:

171480840

result:

ok single line: '171480840'