×
解除綁定,重新設定系統帳號的密碼
您的系統帳號 ID:
您的系統帳號:
您的帳號暱稱:
設定新密碼:
設定新密碼:
×
請輸入要加入的「課程代碼」
請向開設課程的使用者索取「課程代碼」
分類題庫
解題動態
排行榜
討論區
競賽區
登入
註冊
發表新討論
#39773: jack c++
mu0975353917@gmail.com
(Moon Chan)
學校 : 國立雲林科技大學
編號 : 188583
×
傳送站內訊息
傳給:
主題:
內容:
來源 : [49.216.88.200]
最後登入時間 :
2024-05-10 14:20:01
d889.
2.黑傑克(jack)
--
99學年度
台北市
資訊學科能力競賽
| From: [123.205.86.59] | 發表日期 : 2024-03-27 22:30
#include <iostream>
#include <vector>
using namespace std;
int main() {
int n;
cin >> n;
vector<int> patients(n);
//1 3 41
for (int i = 0; i < n; ++i) {
cin >> patients[i];
}
int time_spent = 0,time=0;
int idx = 0;
while (idx < n) {
// 1 3 41
if(time>patients[idx])
{
time=time+5;
}
else
{
if(patients[idx]>time+30)
{
time+=31;
break;
}
else
time=patients[idx]+4;
}
idx+=1;
}
if(idx==0)
{
cout<<30<<endl;
}
else if(idx==n)
{
cout<<time+31<<endl;
}
else
{
cout<<time<<endl;
}
return 0;
}
ZeroJudge Forum