CF1526B I Hate 1111- Codeforces Round #723 (Div. 2)

原文链接Problem - 1526B - Codeforces

B. I Hate 1111

time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

You are given an integer xx. Can you make xx by summing up some number of 11,111,1111,11111,…11,111,1111,11111,…? (You can use any number among them any number of times).

For instance,

  • 33=11+11+1133=11+11+11
  • 144=111+11+11+11144=111+11+11+11

Input

The first line of input contains a single integer tt (1≤t≤10000)(1≤t≤10000) — the number of testcases.

The first and only line of each testcase contains a single integer xx (1≤x≤109)(1≤x≤109) — the number you have to make.

Output

For each testcase, you should output a single string. If you can make xx, output "YES" (without quotes). Otherwise, output "NO".

You can print each letter of "YES" and "NO" in any case (upper or lower).

Example

input

Copy

3
33
144
69

output

Copy

YES
YES
NO

Note

Ways to make 3333 and 144144 were presented in the statement. It can be proved that we can't present 6969 this way.

---------------------------------------------------------------------------------------------------------------------------------

首先11 111可以表示出之后的1111 11111 111111....

也就是说,如果一个数满足条件 n==a*11+b*111

一般做法是,枚举b的个数,然后判断n-111*b是否能够整除11

# include<iostream>
# include<algorithm>
# include<iomanip>
# include<vector>
# include<map>
# include<math.h>
# include<cstring>
# include<queue>
using namespace std;
typedef long long int ll;


int main()
{


 int t;
 cin>>t;

 while(t--)
 {
     ll n;
     scanf("%lld",&n);


     int flag=0;

     for(ll i=0;i*111<=n;i++)
     {
         if((n-i*111)%11==0)
         {
             flag=1;

             cout<<"YES"<<'\n';
             break;
         }
     }

     if(!flag)
     {
         cout<<"NO"<<'\n';
     }
 }

    return 0;
}

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

qinsanma and Code

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值