結果

問題 No.1585 Cubic Number
ユーザー AsahiAsahi
提出日時 2023-02-06 08:29:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 1,000 ms
コード長 619 bytes
コンパイル時間 2,111 ms
コンパイル使用メモリ 75,188 KB
実行使用メモリ 41,640 KB
最終ジャッジ日時 2024-07-04 14:39:52
合計ジャッジ時間 7,129 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,164 KB
testcase_01 AC 132 ms
41,068 KB
testcase_02 AC 131 ms
41,204 KB
testcase_03 AC 131 ms
41,624 KB
testcase_04 AC 126 ms
40,352 KB
testcase_05 AC 132 ms
41,320 KB
testcase_06 AC 132 ms
41,324 KB
testcase_07 AC 129 ms
41,256 KB
testcase_08 AC 133 ms
41,308 KB
testcase_09 AC 119 ms
40,200 KB
testcase_10 AC 128 ms
41,516 KB
testcase_11 AC 119 ms
40,392 KB
testcase_12 AC 135 ms
41,276 KB
testcase_13 AC 131 ms
41,340 KB
testcase_14 AC 131 ms
41,368 KB
testcase_15 AC 117 ms
40,324 KB
testcase_16 AC 129 ms
41,316 KB
testcase_17 AC 128 ms
41,276 KB
testcase_18 AC 132 ms
41,400 KB
testcase_19 AC 132 ms
41,348 KB
testcase_20 AC 131 ms
41,212 KB
testcase_21 AC 128 ms
41,356 KB
testcase_22 AC 131 ms
41,496 KB
testcase_23 AC 130 ms
41,640 KB
testcase_24 AC 125 ms
41,124 KB
testcase_25 AC 132 ms
41,388 KB
testcase_26 AC 118 ms
40,252 KB
testcase_27 AC 130 ms
41,640 KB
testcase_28 AC 128 ms
41,464 KB
testcase_29 AC 128 ms
41,420 KB
testcase_30 AC 123 ms
41,076 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=1;i<=1000000;i++) {
            if( i * i * i  == n ) ok = true;
        }
        output.print(ok?"Yes":"No");
        output.flush();
    }
}
0