範例輸入:
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;
}
您的答案為: yes 正確答案為: no