d189: 11150 - Cola

  1. 1. 內容
  2. 2. 範例輸入
  3. 3. 範例輸出
  4. 4. 想法
  5. 5. 程式碼

CPE 一顆星選集 49 道必考題

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

內容

3瓶空可樂罐換一瓶可樂。
給定開局可樂數 N (1 <= N <= 200),求最多可喝到幾瓶可樂。

空瓶可和朋友借,但最後要還。

範例輸入

8
9

範例輸出

12
13

想法

公式解,所求為 N*3/2。

參考資料:经典数学问题“空瓶换酒”求解

程式碼

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 N;
while(cin >> N){
cout << N*3/2 << "\n";
}
return 0;
}