QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#771624#9628. 骰子estrellad#AC ✓0ms3616kbC++20436b2024-11-22 14:40:062024-11-22 14:40:07

Judging History

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

  • [2024-11-22 14:40:07]
  • 评测
  • 测评结果:AC
  • 用时:0ms
  • 内存:3616kb
  • [2024-11-22 14:40:06]
  • 提交

answer

// dzx
#include<bits/stdc++.h>
using namespace std;
#define endl '\n'
#define int long long
const int N=1e5+5;
const int M=1e5+5,P=998244353,INF=1e18;
typedef pair<int,int> PII;
#define fi first
#define se second
int n,m;
void solve(){
	cin>>n>>m;
    cout<<n*m*6<<endl;
}
signed main(){
    ios::sync_with_stdio(0);
    cin.tie(0),cout.tie(0);
    int _T=1;
    // cin>>_T;
    while(_T--)solve();
    return 0;
}

详细

Test #1:

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

input:

2 2

output:

24

result:

ok single line: '24'

Test #2:

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

input:

1000 1000

output:

6000000

result:

ok single line: '6000000'

Test #3:

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

input:

987 654

output:

3872988

result:

ok single line: '3872988'