QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#762071#9628. 骰子hongsedjingling#AC ✓0ms3592kbC++141.1kb2024-11-19 13:19:322024-11-19 13:19:32

Judging History

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

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

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'