QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#762071 | #9628. 骰子 | hongsedjingling# | AC ✓ | 0ms | 3592kb | C++14 | 1.1kb | 2024-11-19 13:19:32 | 2024-11-19 13:19:32 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define int long long
const int N=20,mod=998244353;
int a[N];
void solve(){
// memset(a,0,sizeof a);
// for (int i=1;i<=9;i++) cin>>a[i];
// int pp=min(a[1],a[2]);
// a[1]-=pp;
// a[2]-=pp;
// a[3]+=pp;
// a[2]+=a[1]/2;
// a[1]%=2;
// if (a[1]==1){
// for (int i=2;i<=12;i++){
// if (a[i]) {
// a[i]-=1;
// a[i+1]+=1;
// break;
// }
// }
// }
// int ans=1;
// for (int i=2;i<=14;i++)
// while (a[i]){
// a[i]--;
// ans*=i;
// ans%=mod;
// }
// cout<<ans<<"\n";
int n,m;cin>>n>>m;
cout<<n*m*6<<'\n';
}
signed main(){
ios::sync_with_stdio(false);
cin.tie(nullptr),cout.tie(nullptr);
// int T;cin>>T;
// while (T--)
solve();
return 0;
}
// 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
詳細信息
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: 3588kb
input:
1000 1000
output:
6000000
result:
ok single line: '6000000'
Test #3:
score: 0
Accepted
time: 0ms
memory: 3592kb
input:
987 654
output:
3872988
result:
ok single line: '3872988'