F.A.Q
Hand In Hand
Online Acmers
Problem Archive
Realtime Judge Status
Authors Ranklist
 
     C/C++/Java Exams     
ACM Steps
Go to Job
Contest LiveCast
ICPC@China
Best Coder beta
VIP | STD Contests
    DIY | Web-DIY beta
Author ID 
Password 
 Register new ID

View Compilation Error

0_0_20537567_29542\Main.java:3: 错误: 找不到符号
    public static BigInteger sqrt(BigInteger n)  
                                  ^
  符号:   类 BigInteger
  位置: 类 Main
0_0_20537567_29542\Main.java:3: 错误: 找不到符号
    public static BigInteger sqrt(BigInteger n)  
                  ^
  符号:   类 BigInteger
  位置: 类 Main
0_0_20537567_29542\Main.java:20: 错误: 找不到符号
    public static boolean can_sqrt(BigInteger n) {  
                                   ^
  符号:   类 BigInteger
  位置: 类 Main
0_0_20537567_29542\Main.java:5: 错误: 找不到符号
        BigInteger l=BigInteger.ZERO,r=n,mid,tmp;  
        ^
  符号:   类 BigInteger
  位置: 类 Main
0_0_20537567_29542\Main.java:5: 错误: 找不到符号
        BigInteger l=BigInteger.ZERO,r=n,mid,tmp;  
                     ^
  符号:   变量 BigInteger
  位置: 类 Main
0_0_20537567_29542\Main.java:8: 错误: 找不到符号
            mid=(l.add(r)).divide(BigInteger.valueOf(2));  
                                  ^
  符号:   变量 BigInteger
  位置: 类 Main
0_0_20537567_29542\Main.java:11: 错误: 找不到符号
                r=mid.subtract(BigInteger.ONE);  
                               ^
  符号:   变量 BigInteger
  位置: 类 Main
0_0_20537567_29542\Main.java:13: 错误: 找不到符号
                l=mid.add(BigInteger.ONE);  
                          ^
  符号:   变量 BigInteger
  位置: 类 Main
0_0_20537567_29542\Main.java:21: 错误: 找不到符号
        BigInteger tmp=sqrt(n);  
        ^
  符号:   类 BigInteger
  位置: 类 Main
0_0_20537567_29542\Main.java:32: 错误: 找不到符号
        BigInteger n,d,e;  
        ^
  符号:   类 BigInteger
  位置: 类 Main
0_0_20537567_29542\Main.java:38: 错误: 找不到符号
            if(n.compareTo(BigInteger.ZERO)==0 && e.compareTo(BigInteger.ZERO)==0 && d.compareTo(BigInteger.ZERO)==0)  
                           ^
  符号:   变量 BigInteger
  位置: 类 Main
0_0_20537567_29542\Main.java:38: 错误: 找不到符号
            if(n.compareTo(BigInteger.ZERO)==0 && e.compareTo(BigInteger.ZERO)==0 && d.compareTo(BigInteger.ZERO)==0)  
                                                              ^
  符号:   变量 BigInteger
  位置: 类 Main
0_0_20537567_29542\Main.java:38: 错误: 找不到符号
            if(n.compareTo(BigInteger.ZERO)==0 && e.compareTo(BigInteger.ZERO)==0 && d.compareTo(BigInteger.ZERO)==0)  
                                                                                                 ^
  符号:   变量 BigInteger
  位置: 类 Main
0_0_20537567_29542\Main.java:43: 错误: 找不到符号
            d=d.subtract(BigInteger.ONE);  
                         ^
  符号:   变量 BigInteger
  位置: 类 Main
0_0_20537567_29542\Main.java:50: 错误: 找不到符号
                BigInteger tmp=d.mod(BigInteger.valueOf(i));  
                ^
  符号:   类 BigInteger
  位置: 类 Main
0_0_20537567_29542\Main.java:50: 错误: 找不到符号
                BigInteger tmp=d.mod(BigInteger.valueOf(i));  
                                     ^
  符号:   变量 BigInteger
  位置: 类 Main
0_0_20537567_29542\Main.java:51: 错误: 找不到符号
                if(tmp.compareTo(BigInteger.ZERO)>0)  
                                 ^
  符号:   变量 BigInteger
  位置: 类 Main
0_0_20537567_29542\Main.java:53: 错误: 找不到符号
                tmp=d.divide(BigInteger.valueOf(i));  
                             ^
  符号:   变量 BigInteger
  位置: 类 Main
0_0_20537567_29542\Main.java:54: 错误: 找不到符号
                BigInteger delta=((n.subtract(tmp.add(BigInteger.ONE))).pow(2)).subtract(tmp.multiply(BigInteger.valueOf(4)));  
                ^
  符号:   类 BigInteger
  位置: 类 Main
0_0_20537567_29542\Main.java:54: 错误: 找不到符号
                BigInteger delta=((n.subtract(tmp.add(BigInteger.ONE))).pow(2)).subtract(tmp.multiply(BigInteger.valueOf(4)));  
                                                                                                      ^
  符号:   变量 BigInteger
  位置: 类 Main
0_0_20537567_29542\Main.java:54: 错误: 找不到符号
                BigInteger delta=((n.subtract(tmp.add(BigInteger.ONE))).pow(2)).subtract(tmp.multiply(BigInteger.valueOf(4)));  
                                                      ^
  符号:   变量 BigInteger
  位置: 类 Main
0_0_20537567_29542\Main.java:58: 错误: 找不到符号
                    BigInteger p,q;  
                    ^
  符号:   类 BigInteger
  位置: 类 Main
0_0_20537567_29542\Main.java:59: 错误: 找不到符号
                    p=((n.subtract(tmp.subtract(BigInteger.ONE))).subtract(delta)).divide(BigInteger.valueOf(2));  
                                                                                          ^
  符号:   变量 BigInteger
  位置: 类 Main
0_0_20537567_29542\Main.java:59: 错误: 找不到符号
                    p=((n.subtract(tmp.subtract(BigInteger.ONE))).subtract(delta)).divide(BigInteger.valueOf(2));  
                                                ^
  符号:   变量 BigInteger
  位置: 类 Main
0_0_20537567_29542\Main.java:60: 错误: 找不到符号
                    q=((n.subtract(tmp.subtract(BigInteger.ONE))).add(delta)).divide(BigInteger.valueOf(2));  
                                                                                     ^
  符号:   变量 BigInteger
  位置: 类 Main
0_0_20537567_29542\Main.java:60: 错误: 找不到符号
                    q=((n.subtract(tmp.subtract(BigInteger.ONE))).add(delta)).divide(BigInteger.valueOf(2));  
                                                ^
  符号:   变量 BigInteger
  位置: 类 Main
0_0_20537567_29542\Main.java:63: 错误: 找不到符号
                        BigInteger cnt=p;  
                        ^
  符号:   类 BigInteger
  位置: 类 Main
27 个错误


Hangzhou Dianzi University Online Judge 3.0
Copyright © 2005-2024 HDU ACM Team. All Rights Reserved.
Designer & Developer : Wang Rongtao LinLe GaoJie GanLu
Total 0.000000(s) query 1, Server time : 2024-11-23 10:47:03, Gzip enabled