zoj-3767-Elevator

来源:互联网 发布:ubuntu exe安装包 编辑:程序博客网 时间:2024/05/30 20:08

Description

How time flies! The graduation of this year is around the corner. N members of ZJU ACM/ICPC Team decided to hold a party in a restaurant. The restaurant is located in a skyscraper so they need to take an elevator to reach there.

The elevator's maximum load is M kilograms. The weight of the i-th team member isAi kilograms. If the total weight of people in the elevator exceeds the maximum load of the elevator, the elevator will raise the alarm and will not move.

Please write a program to implement the weight detector of the elevator.

Input

There are multiple test cases. The first line of input is an integer T indicates the number of test cases. For each test case:

The first line contains two integers N (1 <= N <= 20) andM (1 <= M <= 2000). The next line contains N integersAi (1 <= Ai <= 500).

Output

For each test case, output "Safe" if no alarm will be raised. Otherwise, output "Warning".

Sample Input

23 80050 60 709 80050 55 60 60 60 60 65 70 360

Sample Output

SafeWarning

一个电梯,电梯最大承重,n个人,每个人重量告诉你,然后问你超重没有

sabi题

#include<cstdio>#include<cstring>#include<iostream>#include<algorithm>using namespace std;int main(){    int t;    scanf("%d",&t);    while(t--)    {        int n,m;        int a[25];        int sum=0;        scanf("%d%d",&n,&m);        for(int i=0;i<n;i++)        {            scanf("%d",&a[i]);            sum+=a[i];        }        if(sum>m) printf("Warning\n");        else printf("Safe\n");    }    return 0;}


0 0