結果

問題 No.1585 Cubic Number
ユーザー AsahiAsahi
提出日時 2023-02-06 08:29:29
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 619 bytes
コンパイル時間 1,952 ms
コンパイル使用メモリ 74,744 KB
実行使用メモリ 41,800 KB
最終ジャッジ日時 2024-07-04 14:39:44
合計ジャッジ時間 6,877 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,604 KB
testcase_01 WA -
testcase_02 AC 108 ms
40,540 KB
testcase_03 AC 123 ms
41,584 KB
testcase_04 AC 120 ms
41,428 KB
testcase_05 AC 123 ms
41,520 KB
testcase_06 AC 120 ms
41,276 KB
testcase_07 AC 124 ms
41,144 KB
testcase_08 AC 118 ms
41,556 KB
testcase_09 AC 109 ms
40,404 KB
testcase_10 AC 115 ms
40,416 KB
testcase_11 AC 125 ms
41,260 KB
testcase_12 AC 129 ms
41,676 KB
testcase_13 AC 132 ms
41,404 KB
testcase_14 AC 130 ms
41,356 KB
testcase_15 AC 129 ms
41,560 KB
testcase_16 AC 127 ms
41,568 KB
testcase_17 AC 129 ms
41,536 KB
testcase_18 AC 128 ms
41,480 KB
testcase_19 AC 128 ms
41,548 KB
testcase_20 AC 126 ms
41,472 KB
testcase_21 AC 114 ms
40,408 KB
testcase_22 AC 128 ms
41,248 KB
testcase_23 AC 133 ms
41,448 KB
testcase_24 AC 134 ms
41,544 KB
testcase_25 AC 131 ms
41,568 KB
testcase_26 AC 129 ms
41,548 KB
testcase_27 AC 128 ms
41,584 KB
testcase_28 AC 112 ms
40,356 KB
testcase_29 AC 122 ms
41,208 KB
testcase_30 AC 118 ms
40,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;
// import java.util.stream.Stream;

class Main{
    static BufferedReader buff = new BufferedReader(new InputStreamReader(System.in));
    static StringTokenizer st;
    static PrintWriter output = new PrintWriter(System.out);
    static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws IOException{
        long n = sc.nextLong();
        boolean ok = false;
        for(long i=2;i<=1000000;i++) {
            if( i * i * i  == n ) ok = true;
        }
        output.print(ok?"Yes":"No");
        output.flush();
    }
}
0