這題只要套公式即可得解。
P.S. 因為是一等速度運動,所以位移的公式就是 平均速度 * 經過的時間,而因為正好是要兩倍時間後的位移,所以此時的速度即為平均速度,再乘上2倍時間即得解。
C++(0.036)
/*******************************************************/
/* UVa 10071 Back to High School Physics */
/* Author: Maplewing [at] knightzone.studio */
/* Version: 2011/11/29 */
/*******************************************************/
#include<iostream>
#include<cstdio>
using namespace std;
int main(){
int v, t;
while( scanf( "%d%d", &v, &t ) != EOF ){
printf( "%d\n", 2*v*t );
}
return 0;
}