Codeforces 270A. Fancy Fence Solution

Hints

Solve in C:

#include<stdio.h>
int main()
{

    int t,n,i,r;
    while(scanf("%d",&t)!=EOF)
    {
        for(i=1; i<=t; i++)
        {
            scanf("%d",&n);
            r=180-n;
            if((360%r)==0)
                printf("YES\n");
            else
                printf("NO\n");
        }
    }
}

No comments

Most View Post

Recent post

Codeforces Round 925 (Div. 3) 1931D. Divisible Pairs Solution

    Problem Link  :   https://codeforces.com/contest/1931/problem/D S olution in C++: /// Author : AH_Tonmoy #include < bits / stdc ++. ...

Powered by Blogger.