ZOJ 2969: Easy Task

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ZOJ 2969: Easy Task相关的知识,希望对你有一定的参考价值。

ZOJ 2969: Easy Task

 1 ///@date 2017-02-07
 2 ///@author Sycamore, ZJNU
 3 #include <iostream>
 4 using namespace std;
 5 int c[1001];
 6 int main()
 7 {
 8     int T;
 9     cin >> T;
10     while (T--)
11     {
12         int N;
13         cin >> N;
14         for (int i = N; i >=0; i--)cin >> c[i];
15         if (!N)
16         {
17             cout << 0 << endl;
18             continue;
19         }
20         for (int i = N; i>0; i--)
21         {
22             cout << c[i] * i;
23             cout << (i>1 ?   : \n);
24         }
25     }
26     return 0;
27 }

 

以上是关于ZOJ 2969: Easy Task的主要内容,如果未能解决你的问题,请参考以下文章

ZOJ3791 An Easy Game(DP)

ZOJ-3791 An Easy Game DP

ZOJ Problem Set - 2480 Simplest Task in Windows

HDU 1076 An Easy Task

An Easy Task

ZOJ 3331-Process the Tasks (DP)