#20287: 這題範例是不是有問題


Brant (Brant)

學校 : 臺北市立成功高級中學
編號 : 107817
來源 : [211.75.210.244]
最後登入時間 :
2024-10-15 09:24:18
a148. You Cannot Pass?! | From: [114.45.95.60] | 發表日期 : 2019-12-22 16:29

範例輸入:
5 61 61 61 61 55
輸出:
no

但是61+61+61+61+55<60阿
怎麼可能是no

我的程式:
#include <iostream>

using namespace std;

int main()
{
int t,a,b;
while(cin>>t)
{
b=0;
for(int i=0;i<t;i++)
{
cin>>a;
b+=a-60;
}
b<0?cout<<"yes"<<endl:cout<<"no"<<endl;
}
return 0;
}

#0: 100% WA (line:3)

您的答案為: yes
正確答案為: no


 
ZeroJudge Forum