QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#743578#9628. 骰子mapleKingAC ✓0ms3608kbC++20536b2024-11-13 19:33:212024-11-13 19:33:21

Judging History

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

  • [2024-11-13 19:33:21]
  • 评测
  • 测评结果:AC
  • 用时:0ms
  • 内存:3608kb
  • [2024-11-13 19:33:21]
  • 提交

answer

#include <bits/stdc++.h>
#pragma GCC optimize(2)

// using namespace std;

using i64 = long long;
using u32 = unsigned int;
using u64 = unsigned long long;

void solve() {
    int n, m;
    std::cin >> n >> m;
    std::cout << 6LL * n * m << "\n";
}

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    // std::cout << std::fixed << std::setprecision(10); // 固定输出精度
    int t = 1;
    // std::cin >> t;

    while (t--) {
        solve();
    }
    

    return 0;
}

详细

Test #1:

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

input:

2 2

output:

24

result:

ok single line: '24'

Test #2:

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

input:

1000 1000

output:

6000000

result:

ok single line: '6000000'

Test #3:

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

input:

987 654

output:

3872988

result:

ok single line: '3872988'