d226: 10071 - Back to High School Physics

  1. 1. 內容
  2. 2. 範例輸入
  3. 3. 範例輸出
  4. 4. 想法

CPE 一顆星選集 49 道必考題

題目連結:https://zerojudge.tw/ShowProblem?problemid=d226

內容

某一個粒子有一初速度和等加速度。假設在 t 秒後此粒子的速度為 v ,請問這個粒子在 2t 秒後所經過的位移是多少。

每組測資一列,分別代表 v (-100 <= v <= 100)、t (0 <= t <= 200)。

範例輸入

0 0
5 12

範例輸出

0
120

想法

## 程式碼
C++
1
2
3
4
5
6
7
8
9
10
11
12
#include <bits/stdc++.h>
#define fastio ios_base::sync_with_stdio(false), cin.tie(nullptr)
using namespace std;

int main(){
fastio;
int t, v;
while(cin >> t){
cin >> v;
cout << 2 * t * v << "\n";
}
}