제출 #858340

#제출 시각아이디문제언어결과실행 시간메모리
858340ily2003평균 (COCI14_prosjek)C++14
50 / 50
1 ms600 KiB
#include <bits/stdc++.h> using namespace std; int n,tong,so,a[101]; int main() { ios_base::sync_with_stdio(0); cin.tie(0);cout.tie(0); cin >> n; for (int i=1;i<=n;++i) cin >> a[i]; cout << a[1] << " "; tong=a[1]; for (int i=2;i<=n;++i) { so=a[i]*i; cout << so-tong << " "; tong=so; } }
#Verdict Execution timeMemoryGrader output
Fetching results...