結果

問題 No.1585 Cubic Number
ユーザー kotatsugamekotatsugame
提出日時 2021-07-08 22:20:47
言語 Perl
(5.38.2)
結果
AC  
実行時間 213 ms / 1,000 ms
コード長 44 bytes
コンパイル時間 365 ms
コンパイル使用メモリ 75,212 KB
実行使用メモリ 75,292 KB
最終ジャッジ日時 2023-09-14 05:58:06
合計ジャッジ時間 8,179 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 202 ms
75,156 KB
testcase_01 AC 203 ms
75,088 KB
testcase_02 AC 203 ms
75,288 KB
testcase_03 AC 203 ms
75,280 KB
testcase_04 AC 200 ms
75,276 KB
testcase_05 AC 202 ms
75,156 KB
testcase_06 AC 201 ms
75,120 KB
testcase_07 AC 202 ms
75,284 KB
testcase_08 AC 199 ms
75,244 KB
testcase_09 AC 201 ms
75,292 KB
testcase_10 AC 202 ms
75,212 KB
testcase_11 AC 200 ms
75,152 KB
testcase_12 AC 199 ms
75,256 KB
testcase_13 AC 199 ms
75,260 KB
testcase_14 AC 202 ms
75,288 KB
testcase_15 AC 203 ms
75,232 KB
testcase_16 AC 200 ms
74,972 KB
testcase_17 AC 202 ms
75,240 KB
testcase_18 AC 199 ms
75,244 KB
testcase_19 AC 200 ms
75,252 KB
testcase_20 AC 201 ms
75,116 KB
testcase_21 AC 205 ms
75,288 KB
testcase_22 AC 213 ms
75,284 KB
testcase_23 AC 212 ms
75,256 KB
testcase_24 AC 209 ms
75,208 KB
testcase_25 AC 208 ms
75,180 KB
testcase_26 AC 208 ms
75,060 KB
testcase_27 AC 209 ms
75,272 KB
testcase_28 AC 208 ms
75,192 KB
testcase_29 AC 206 ms
75,248 KB
testcase_30 AC 203 ms
75,080 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

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