# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
30881 | shashwatchandra | Tarifa (COCI16_tarifa) | C++14 | 0 ms | 2020 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <iostream>
using namespace std;
int main() {
int mb;
cin >> mb;
int months;
cin >> months;
int nextmonth = mb;
for (int i = 0;i < months;i++){
int a;
cin >> a;
nextmonth += 10 - a;
}
cout << nextmonth;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |