CF60D.Savior

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Misha decided to help Pasha and Akim be friends again. He had a cunning plan — to destroy all the laughy mushrooms. He knows that the laughy mushrooms can easily burst when they laugh. Mushrooms grow on the lawns. There are a[t]a[t] mushrooms on the tt -th lawn.

Misha knows that the lawns where the mushrooms grow have a unique ability. A lawn (say, ii ) can transfer laugh to other lawn (say, jj ) if there exists an integer (say, bb ) such, that some permutation of numbers a[i],a[j]a[i],a[j] and bb is a beautiful triple ( iji≠j ). A beautiful triple is such three pairwise coprime numbers x,y,zx,y,z , which satisfy the following condition: x2+y2=z2x^{2}+y^{2}=z^{2} .

Misha wants to know on which minimal number of lawns he should laugh for all the laughy mushrooms to burst.

输入格式

The first line contains one integer nn ( 1<=n<=1061<=n<=10^{6} ) which is the number of lawns. The next line contains nn integers aia_{i} which are the number of mushrooms on the ii -lawn ( 1<=ai<=1071<=a_{i}<=10^{7} ). All the numbers are different.

输出格式

Print a single number — the minimal number of lawns on which Misha should laugh for all the mushrooms to burst.

输入输出样例

  • 输入#1

    1
    2
    

    输出#1

    1
    
  • 输入#2

    2
    1 2
    

    输出#2

    2
    
  • 输入#3

    2
    3 5
    

    输出#3

    1
    
首页