結果

問題 No.1585 Cubic Number
ユーザー horiesinitihoriesiniti
提出日時 2023-02-15 00:41:30
言語 Ruby
(3.3.0)
結果
AC  
実行時間 459 ms / 1,000 ms
コード長 100 bytes
コンパイル時間 116 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 52,940 KB
最終ジャッジ日時 2024-07-17 12:07:01
合計ジャッジ時間 15,542 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 434 ms
52,792 KB
testcase_01 AC 446 ms
52,892 KB
testcase_02 AC 443 ms
52,908 KB
testcase_03 AC 438 ms
52,892 KB
testcase_04 AC 444 ms
52,780 KB
testcase_05 AC 445 ms
52,896 KB
testcase_06 AC 451 ms
52,772 KB
testcase_07 AC 445 ms
52,892 KB
testcase_08 AC 459 ms
52,892 KB
testcase_09 AC 451 ms
52,800 KB
testcase_10 AC 458 ms
52,924 KB
testcase_11 AC 443 ms
52,836 KB
testcase_12 AC 440 ms
52,784 KB
testcase_13 AC 441 ms
52,908 KB
testcase_14 AC 455 ms
52,828 KB
testcase_15 AC 444 ms
52,940 KB
testcase_16 AC 439 ms
52,760 KB
testcase_17 AC 429 ms
52,768 KB
testcase_18 AC 430 ms
52,884 KB
testcase_19 AC 434 ms
52,752 KB
testcase_20 AC 448 ms
52,832 KB
testcase_21 AC 445 ms
52,760 KB
testcase_22 AC 436 ms
52,796 KB
testcase_23 AC 440 ms
52,892 KB
testcase_24 AC 441 ms
52,780 KB
testcase_25 AC 433 ms
52,912 KB
testcase_26 AC 436 ms
52,796 KB
testcase_27 AC 442 ms
52,768 KB
testcase_28 AC 434 ms
52,924 KB
testcase_29 AC 439 ms
52,908 KB
testcase_30 AC 435 ms
52,780 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

hs={}
1.upto(10**6){|i|
	hs[i**3]=0
}
if hs.member?(gets.to_i) then
	puts "Yes"
else
	puts "No"
end
0