답안 #906413

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
906413 2024-01-14T08:41:57 Z Ludissey Fancy Fence (CEOI20_fancyfence) C++14
0 / 100
1 ms 600 KB
#include <bits/stdc++.h>
using namespace std;
#define int long long
 
int n,m;

int clc(int x) { return ((x*(x+1))/2); }
signed main() {
    ios::sync_with_stdio(false); cin.tie(nullptr);
    cin >> n;
    int H;
    int width=0;
    for (int i = 0; i < n; i++) cin >> H;
    for (int i = 0; i < n; i++) {
        int x; cin >> x;
        width+=x;
    }
    cout << clc(width)*clc(H) << "\n";
    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 360 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 600 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 360 KB Output isn't correct
2 Halted 0 ms 0 KB -