10071 - Back to High School Physics

解題思路:php

1. 兩個基本物理公式spa

    V = V0 + a*t  (V0爲初速度, a 爲加速度, t 爲時間, V 爲當前速度)code

    S = (V + V0) * t / 2 (V0爲初速度, V 爲末速度, t 爲時間)blog

 

2. 由題目可知, 輸入的是 t 和 t 時間處的 V, 則2t時間處的 S = ((V0 + a*2*t) + V0) * 2*t / 2 = (V0 + a*t) * 2*t ip

   即所求 S = V * 2 * t  (V 爲 t 時間處的速度)get

 

題目: http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=94&page=show_problem&problem=1012it

代碼:pip

#include <stdio.h>
int main() { int v, t; while(EOF != scanf("%d%d", &v, &t)){ printf("%d\n", 2*v*t); } return 0; }

環境:ANSI C 4.5.3 - GNU C Compiler with options: -lm -lcrypt -O2 -pipe -ansi -DONLINE_JUDGEio

相關文章
相關標籤/搜索