結果

問題 No.238 Mr. K's Another Gift
ユーザー ともきともき
提出日時 2015-07-06 01:09:30
言語 Scala(Beta)
(3.4.0)
結果
RE  
実行時間 -
コード長 1,465 bytes
コンパイル時間 9,806 ms
コンパイル使用メモリ 252,536 KB
実行使用メモリ 63,592 KB
最終ジャッジ日時 2024-06-29 02:11:38
合計ジャッジ時間 46,985 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 784 ms
62,604 KB
testcase_01 RE -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 788 ms
62,672 KB
testcase_05 AC 859 ms
63,204 KB
testcase_06 AC 835 ms
62,652 KB
testcase_07 AC 860 ms
63,108 KB
testcase_08 AC 835 ms
63,464 KB
testcase_09 AC 865 ms
63,440 KB
testcase_10 AC 806 ms
62,956 KB
testcase_11 AC 804 ms
62,944 KB
testcase_12 AC 813 ms
62,800 KB
testcase_13 AC 829 ms
62,912 KB
testcase_14 AC 829 ms
63,180 KB
testcase_15 AC 849 ms
62,820 KB
testcase_16 AC 854 ms
62,956 KB
testcase_17 AC 851 ms
62,956 KB
testcase_18 AC 853 ms
62,960 KB
testcase_19 AC 788 ms
63,188 KB
testcase_20 RE -
testcase_21 AC 798 ms
63,048 KB
testcase_22 AC 760 ms
62,688 KB
testcase_23 WA -
testcase_24 AC 811 ms
63,240 KB
testcase_25 WA -
testcase_26 AC 805 ms
62,536 KB
testcase_27 AC 859 ms
63,400 KB
testcase_28 AC 804 ms
62,744 KB
testcase_29 AC 860 ms
63,592 KB
testcase_30 AC 792 ms
63,072 KB
testcase_31 AC 797 ms
62,924 KB
testcase_32 AC 807 ms
62,880 KB
testcase_33 AC 890 ms
63,148 KB
testcase_34 AC 814 ms
62,852 KB
testcase_35 AC 833 ms
62,912 KB
testcase_36 AC 815 ms
62,848 KB
testcase_37 AC 856 ms
63,068 KB
testcase_38 AC 811 ms
63,192 KB
testcase_39 AC 785 ms
63,044 KB
testcase_40 AC 805 ms
63,088 KB
testcase_41 AC 769 ms
62,700 KB
testcase_42 AC 790 ms
63,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn.readLine
import scala.collection.mutable.PriorityQueue
import scala.annotation.tailrec
import scala.util.control.Breaks

object Main {
  // def insert(s : String, c : Char, n : Int) : String = {
  //   val (head,tail) = s.splitAt(n)
  //   head + c + tail
  // }
  def solve(s : String) : Option[String] = {
    val n = s.length
    val b = new Breaks
    def check(s : String,c : Char) : Boolean = {
      val n = s.length
      (0 until s.length).forall((i) => {
                                  val j = n - i - 1
                                  s(i) == c || s(j) == c || s(i) == s(j)
                                })
    }
    if(check(s,'?')){
      Some(s.take(n/2) + s(n/2) + s.drop(n/2))
    }else{
      var ans : Option[String] = None
      b.breakable {
        for(i <- 0 until n){
          val j = n - i - 1
          if(s(i) != s(j)){
            val checking = Vector((s.take(i) + "?" + s.drop(i)),
                                  (s.take(j+1) + "?" + s.drop(j+1)))
            checking.foreach((i) => if(check(i,'?')){
                               val r = i.indexOf('?')
                               ans = Some(i.updated(r,s(n-r)))
                             })
            b.break
          }
        }
      }
      ans
    }
  }
  def main(args : Array[String]) : Unit = {
    val s = readLine
    val ret = solve(s) match {
        case Some(j) => j
        case None    => "NA"
      }
    println(ret)
  }
}
0