QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#765204 | #9628. 骰子 | afeng111# | WA | 0ms | 3704kb | C++20 | 1.2kb | 2024-11-20 13:06:18 | 2024-11-20 13:06:19 |
Judging History
answer
#include <iostream>
#include <map>
#include <set>
#include <array>
#include <cmath>
#include <queue>
#include <stack>
#include <bitset>
#include <random> //mt19937 mtrand(time(0));
#include <string>
#include <time.h>
#include <vector>
#include <cstring>
#include <iomanip> //fixed<<setprecision(12)<<
#include <utility> //pair模板,std::move()
#include <assert.h>
#include <algorithm>
#include <unordered_map>
#define QAQ 0
#define endl '\n'
#define close \
std::ios::sync_with_stdio(false); \
cin.tie(0); \
cout.tie(0)
typedef long long ll;
typedef unsigned long long ull;
typedef double db;
const db pi = acos(-1);
const db eps = 1e-7;
const int inf = 1e9;
const ll INF = 2e18;
const int N = 1e6 + 7;
const int M = 5e6 + 7;
const int mod = 998244353;
const int base = 131;
using namespace std;
//
void solve()
{
// freopen("data.in.txt","r",stdin);
// freopen("data.out.txt","w",stdout);
int n,m;
cin>>n>>m;
cout<<4ll*n*m<<endl;
}
signed main()
{
close;
int t = 1;
// cin >> t;
while (t--)
{
solve();
}
return QAQ;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3704kb
input:
2 2
output:
16
result:
wrong answer 1st lines differ - expected: '24', found: '16'