結果

問題 No.491 10^9+1と回文
ユーザー 💕💖💞💕💖💞
提出日時 2017-06-24 19:32:54
言語 Kotlin
(1.9.23)
結果
MLE  
実行時間 -
コード長 307 bytes
コンパイル時間 11,604 ms
コンパイル使用メモリ 433,552 KB
実行使用メモリ 233,204 KB
最終ジャッジ日時 2024-11-20 10:22:55
合計ジャッジ時間 77,569 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 329 ms
60,156 KB
testcase_01 MLE -
testcase_02 AC 339 ms
63,596 KB
testcase_03 MLE -
testcase_04 MLE -
testcase_05 MLE -
testcase_06 MLE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 AC 332 ms
63,652 KB
testcase_10 MLE -
testcase_11 AC 342 ms
60,096 KB
testcase_12 MLE -
testcase_13 AC 309 ms
63,360 KB
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 AC 330 ms
63,748 KB
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 MLE -
testcase_23 MLE -
testcase_24 MLE -
testcase_25 MLE -
testcase_26 MLE -
testcase_27 AC 338 ms
60,272 KB
testcase_28 MLE -
testcase_29 AC 340 ms
63,592 KB
testcase_30 MLE -
testcase_31 AC 317 ms
59,944 KB
testcase_32 MLE -
testcase_33 AC 328 ms
63,672 KB
testcase_34 MLE -
testcase_35 MLE -
testcase_36 MLE -
testcase_37 AC 332 ms
63,616 KB
testcase_38 MLE -
testcase_39 AC 374 ms
62,424 KB
testcase_40 MLE -
testcase_41 MLE -
testcase_42 MLE -
testcase_43 AC 351 ms
60,260 KB
testcase_44 MLE -
testcase_45 MLE -
testcase_46 AC 384 ms
59,316 KB
testcase_47 AC 340 ms
57,020 KB
testcase_48 AC 330 ms
56,936 KB
testcase_49 AC 300 ms
56,680 KB
testcase_50 AC 393 ms
59,428 KB
testcase_51 MLE -
testcase_52 AC 343 ms
56,972 KB
testcase_53 AC 304 ms
56,596 KB
testcase_54 AC 329 ms
56,920 KB
testcase_55 AC 328 ms
56,840 KB
testcase_56 AC 333 ms
56,992 KB
testcase_57 AC 368 ms
59,324 KB
testcase_58 MLE -
testcase_59 AC 354 ms
57,000 KB
testcase_60 AC 343 ms
56,952 KB
testcase_61 AC 329 ms
56,820 KB
testcase_62 AC 445 ms
62,156 KB
testcase_63 MLE -
testcase_64 AC 355 ms
56,892 KB
testcase_65 AC 324 ms
56,816 KB
testcase_66 AC 337 ms
56,980 KB
testcase_67 TLE -
testcase_68 AC 345 ms
56,884 KB
testcase_69 AC 314 ms
56,600 KB
testcase_70 AC 329 ms
57,016 KB
testcase_71 MLE -
testcase_72 AC 388 ms
59,224 KB
testcase_73 MLE -
testcase_74 AC 351 ms
57,000 KB
testcase_75 AC 324 ms
56,744 KB
testcase_76 AC 328 ms
56,844 KB
testcase_77 AC 327 ms
56,864 KB
testcase_78 AC 432 ms
61,892 KB
testcase_79 MLE -
testcase_80 AC 322 ms
56,644 KB
testcase_81 AC 324 ms
56,820 KB
testcase_82 AC 333 ms
56,896 KB
testcase_83 MLE -
testcase_84 AC 328 ms
56,776 KB
testcase_85 MLE -
testcase_86 AC 325 ms
56,832 KB
testcase_87 AC 346 ms
57,112 KB
testcase_88 AC 308 ms
56,592 KB
testcase_89 AC 364 ms
59,164 KB
testcase_90 MLE -
testcase_91 MLE -
testcase_92 AC 321 ms
56,972 KB
testcase_93 AC 427 ms
62,072 KB
testcase_94 MLE -
testcase_95 AC 324 ms
56,748 KB
testcase_96 AC 351 ms
56,940 KB
testcase_97 TLE -
testcase_98 TLE -
testcase_99 TLE -
testcase_100 TLE -
testcase_101 TLE -
testcase_102 TLE -
testcase_103 TLE -
testcase_104 TLE -
testcase_105 MLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args : Array<String> ) {
         ^
Main.kt:8:12: warning: name shadowed: x
      val (x,y) = xy
           ^

ソースコード

diff #

fun main(args : Array<String> ) {
  val a   = readLine()!!.toLong()
  val b   = 1000000001L
  val ans = (1..a/b).map { x ->
    val c1 = (x * b).toString().toList()
    val c2 = c1.reversed()
    c1.zip(c2).all { xy ->
      val (x,y) = xy
      x == y
    }
  }.count { x -> x == true }
  println( ans )
}
0