博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UVA 10071 Problem B Back to High School Physics
阅读量:5128 次
发布时间:2019-06-13

本文共 938 字,大约阅读时间需要 3 分钟。

A particle has initial velocity and constant acceleration. If its velocity after certain time is v then what will its displacement be in twice of that time?

Input

The input will contain two integers in each line. Each line makes one set of input. These two integers denote the value of v  (-100 <= v <= 100) and t(0<=t<= 200) ( t means at the time the particle gains that velocity)

Output

For each line of input print a single integer in one line denoting the displacement in double of that time.

Sample Input

0 0

5 12

Sample Output

0

120

题意:t时间后质点的速度为v,那么第二个t时间内质点的位移是多少?要求输出这两个时间t内质点的位移

分析:t时间后质点的速度是v,那么开始时质点的速度为0!第二个t时间后质点的速度为2v,那么由物理公式可知在2t时间内质点的位移是:(0+2v)/2*2t,即质点的位移是2*v*t!即输出的是输入的两个正整数乘积的二倍!

AC源代码(C语言):

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

 2013-03-14

转载于:https://www.cnblogs.com/fjutacm/archive/2013/02/25/2932706.html

你可能感兴趣的文章
【题解】青蛙的约会
查看>>
IO流
查看>>
mybatis调用存储过程,获取返回的游标
查看>>
设计模式之装饰模式(结构型)
查看>>
Swift3.0服务端开发(三) Mustache页面模板与日志记录
查看>>
EntityFrameWork 实现实体类和DBContext分离在不同类库
查看>>
autopep8
查看>>
GIT在Linux上的安装和使用简介
查看>>
基于C#编程语言的Mysql常用操作
查看>>
s3c2440实验---定时器
查看>>
[转]: 视图和表的区别和联系
查看>>
图论例题1——NOIP2015信息传递
查看>>
CocoaPods的安装和使用那些事(Xcode 7.2,iOS 9.2,Swift)
查看>>
Android 官方新手指导教程
查看>>
幸运转盘v1.0 【附视频】我的Android原创处女作,请支持!
查看>>
UseIIS
查看>>
vi命令提示:Terminal too wide
查看>>
引用 移植Linux到s3c2410上
查看>>
[51nod] 1199 Money out of Thin Air #线段树+DFS序
查看>>
Red and Black(poj-1979)
查看>>