結果

問題 No.1585 Cubic Number
ユーザー fukafukatanifukafukatani
提出日時 2021-07-14 09:49:31
言語 Scala(Beta)
(3.4.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 261 bytes
コンパイル時間 11,355 ms
コンパイル使用メモリ 259,308 KB
実行使用メモリ 94,972 KB
最終ジャッジ日時 2024-07-03 08:55:19
合計ジャッジ時間 45,986 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 939 ms
65,856 KB
testcase_02 AC 966 ms
66,208 KB
testcase_03 AC 951 ms
66,332 KB
testcase_04 AC 944 ms
66,148 KB
testcase_05 AC 920 ms
66,012 KB
testcase_06 AC 918 ms
66,092 KB
testcase_07 AC 917 ms
66,216 KB
testcase_08 AC 908 ms
66,124 KB
testcase_09 AC 915 ms
65,944 KB
testcase_10 AC 911 ms
66,232 KB
testcase_11 AC 905 ms
66,252 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 942 ms
66,132 KB
testcase_16 AC 926 ms
66,204 KB
testcase_17 AC 912 ms
66,248 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 985 ms
70,204 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 924 ms
66,212 KB
testcase_29 AC 916 ms
66,132 KB
testcase_30 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

object Main extends App {
  val sc = new java.util.Scanner(System.in)
  val n = sc.nextLong
  (1L to List(n, 1000000L).min).takeWhile(p => p * p * p <= n).find(p => p * p * p == n) match {
    case Some(_) => println("Yes")
    case None => println("No")
  }
}
0