結果

問題 No.2185 平方数の下6桁
ユーザー AsahiAsahi
提出日時 2023-01-13 21:41:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 781 ms / 2,000 ms
コード長 886 bytes
コンパイル時間 2,122 ms
コンパイル使用メモリ 75,560 KB
実行使用メモリ 46,308 KB
最終ジャッジ日時 2024-06-06 22:19:40
合計ジャッジ時間 33,389 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 768 ms
46,092 KB
testcase_01 AC 764 ms
46,020 KB
testcase_02 AC 754 ms
46,012 KB
testcase_03 AC 763 ms
45,888 KB
testcase_04 AC 758 ms
45,800 KB
testcase_05 AC 758 ms
45,764 KB
testcase_06 AC 754 ms
46,016 KB
testcase_07 AC 760 ms
46,308 KB
testcase_08 AC 758 ms
45,776 KB
testcase_09 AC 755 ms
46,112 KB
testcase_10 AC 758 ms
46,004 KB
testcase_11 AC 752 ms
46,300 KB
testcase_12 AC 745 ms
46,120 KB
testcase_13 AC 751 ms
46,128 KB
testcase_14 AC 740 ms
46,108 KB
testcase_15 AC 754 ms
45,936 KB
testcase_16 AC 754 ms
46,232 KB
testcase_17 AC 763 ms
45,808 KB
testcase_18 AC 768 ms
46,192 KB
testcase_19 AC 758 ms
45,892 KB
testcase_20 AC 760 ms
46,184 KB
testcase_21 AC 765 ms
45,984 KB
testcase_22 AC 762 ms
45,924 KB
testcase_23 AC 758 ms
46,024 KB
testcase_24 AC 775 ms
46,120 KB
testcase_25 AC 781 ms
45,892 KB
testcase_26 AC 778 ms
46,112 KB
testcase_27 AC 768 ms
46,216 KB
testcase_28 AC 761 ms
45,844 KB
testcase_29 AC 761 ms
46,036 KB
testcase_30 AC 762 ms
46,064 KB
testcase_31 AC 752 ms
46,020 KB
testcase_32 AC 757 ms
46,148 KB
testcase_33 AC 760 ms
46,088 KB
testcase_34 AC 745 ms
45,836 KB
testcase_35 AC 758 ms
46,084 KB
testcase_36 AC 752 ms
46,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;
 
public class Main{
    public static BufferedReader buff = new BufferedReader(new InputStreamReader(System.in));
    public static PrintWriter output = new PrintWriter(System.out);
    public static Scanner sc = new Scanner(System.in);
    public static final int INFI = Integer.MAX_VALUE;
    public static final long INFL = Long.MAX_VALUE;
    public static final int MOD = 1000000007;

    public static void main(String[] args) throws IOException{
        StringTokenizer st;
        //st = new StringTokenizer(buff.readLine());
        String S = sc.next();
        boolean ok = false;
        for(long i=(long)1e6;i<=(long)1e7;i++) {
            String s = Long.toString(i*i);
            if(s.substring(7,s.length()).equals(S)) ok = true;
        }
        output.println(ok?"YES":"NO");
        output.flush();
    }
}
0