結果

問題 No.1585 Cubic Number
ユーザー tentententen
提出日時 2021-07-12 09:53:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 69 ms / 1,000 ms
コード長 983 bytes
コンパイル時間 2,407 ms
コンパイル使用メモリ 74,152 KB
実行使用メモリ 37,676 KB
最終ジャッジ日時 2024-07-02 03:22:10
合計ジャッジ時間 5,417 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
37,548 KB
testcase_01 AC 53 ms
37,032 KB
testcase_02 AC 69 ms
37,528 KB
testcase_03 AC 67 ms
37,368 KB
testcase_04 AC 65 ms
37,432 KB
testcase_05 AC 65 ms
37,488 KB
testcase_06 AC 68 ms
37,496 KB
testcase_07 AC 65 ms
37,492 KB
testcase_08 AC 51 ms
37,072 KB
testcase_09 AC 51 ms
37,024 KB
testcase_10 AC 52 ms
36,804 KB
testcase_11 AC 52 ms
36,608 KB
testcase_12 AC 68 ms
37,560 KB
testcase_13 AC 61 ms
36,732 KB
testcase_14 AC 66 ms
36,992 KB
testcase_15 AC 66 ms
36,840 KB
testcase_16 AC 67 ms
37,576 KB
testcase_17 AC 66 ms
37,568 KB
testcase_18 AC 65 ms
37,656 KB
testcase_19 AC 65 ms
37,472 KB
testcase_20 AC 67 ms
37,676 KB
testcase_21 AC 65 ms
37,584 KB
testcase_22 AC 65 ms
37,552 KB
testcase_23 AC 65 ms
37,416 KB
testcase_24 AC 67 ms
37,364 KB
testcase_25 AC 66 ms
37,464 KB
testcase_26 AC 68 ms
37,452 KB
testcase_27 AC 65 ms
37,364 KB
testcase_28 AC 53 ms
36,932 KB
testcase_29 AC 66 ms
37,584 KB
testcase_30 AC 65 ms
37,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        long n = sc.nextLong();
        for (long i = 1; i <= 1000000; i++) {
            if (i * i * i == n) {
                System.out.println("Yes");
                return;
            }
        }
        System.out.println("No");
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0