結果

問題 No.1585 Cubic Number
ユーザー kotatsugamekotatsugame
提出日時 2021-07-08 22:20:47
言語 Perl
(5.38.2)
結果
AC  
実行時間 208 ms / 1,000 ms
コード長 44 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 75,900 KB
実行使用メモリ 76,068 KB
最終ジャッジ日時 2024-07-01 13:33:23
合計ジャッジ時間 7,747 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 207 ms
75,764 KB
testcase_01 AC 203 ms
75,892 KB
testcase_02 AC 204 ms
75,924 KB
testcase_03 AC 204 ms
75,896 KB
testcase_04 AC 204 ms
75,864 KB
testcase_05 AC 205 ms
75,940 KB
testcase_06 AC 205 ms
75,908 KB
testcase_07 AC 203 ms
75,900 KB
testcase_08 AC 204 ms
75,876 KB
testcase_09 AC 206 ms
75,964 KB
testcase_10 AC 204 ms
75,864 KB
testcase_11 AC 204 ms
75,872 KB
testcase_12 AC 204 ms
76,064 KB
testcase_13 AC 204 ms
76,048 KB
testcase_14 AC 204 ms
75,784 KB
testcase_15 AC 206 ms
75,828 KB
testcase_16 AC 205 ms
75,984 KB
testcase_17 AC 205 ms
75,944 KB
testcase_18 AC 203 ms
76,068 KB
testcase_19 AC 203 ms
75,736 KB
testcase_20 AC 204 ms
75,944 KB
testcase_21 AC 204 ms
75,876 KB
testcase_22 AC 203 ms
75,980 KB
testcase_23 AC 206 ms
75,952 KB
testcase_24 AC 204 ms
75,864 KB
testcase_25 AC 204 ms
75,880 KB
testcase_26 AC 206 ms
75,976 KB
testcase_27 AC 206 ms
75,760 KB
testcase_28 AC 205 ms
76,000 KB
testcase_29 AC 207 ms
76,024 KB
testcase_30 AC 208 ms
75,920 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

$N=<>;print grep($_**3==$N,1..1e6)?Yes:No,$/
0