結果

問題 No.238 Mr. K's Another Gift
ユーザー ともきともき
提出日時 2015-07-06 01:18:38
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 969 ms / 2,000 ms
コード長 1,465 bytes
コンパイル時間 7,682 ms
コンパイル使用メモリ 259,716 KB
実行使用メモリ 65,264 KB
最終ジャッジ日時 2024-06-29 02:12:57
合計ジャッジ時間 45,571 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 771 ms
64,512 KB
testcase_01 AC 795 ms
64,932 KB
testcase_02 AC 816 ms
64,816 KB
testcase_03 AC 796 ms
65,120 KB
testcase_04 AC 788 ms
64,424 KB
testcase_05 AC 873 ms
65,204 KB
testcase_06 AC 825 ms
64,616 KB
testcase_07 AC 900 ms
65,060 KB
testcase_08 AC 870 ms
65,264 KB
testcase_09 AC 969 ms
64,920 KB
testcase_10 AC 810 ms
65,024 KB
testcase_11 AC 804 ms
65,036 KB
testcase_12 AC 825 ms
65,000 KB
testcase_13 AC 804 ms
65,004 KB
testcase_14 AC 837 ms
64,796 KB
testcase_15 AC 866 ms
65,196 KB
testcase_16 AC 886 ms
65,144 KB
testcase_17 AC 826 ms
64,968 KB
testcase_18 AC 853 ms
65,112 KB
testcase_19 AC 808 ms
64,988 KB
testcase_20 AC 809 ms
64,880 KB
testcase_21 AC 841 ms
64,964 KB
testcase_22 AC 791 ms
64,664 KB
testcase_23 AC 795 ms
64,996 KB
testcase_24 AC 806 ms
64,760 KB
testcase_25 AC 812 ms
65,100 KB
testcase_26 AC 810 ms
64,544 KB
testcase_27 AC 889 ms
65,080 KB
testcase_28 AC 825 ms
64,400 KB
testcase_29 AC 885 ms
65,056 KB
testcase_30 AC 807 ms
65,148 KB
testcase_31 AC 788 ms
65,064 KB
testcase_32 AC 786 ms
64,948 KB
testcase_33 AC 842 ms
64,988 KB
testcase_34 AC 811 ms
65,060 KB
testcase_35 AC 851 ms
65,080 KB
testcase_36 AC 830 ms
65,064 KB
testcase_37 AC 836 ms
64,952 KB
testcase_38 AC 831 ms
65,220 KB
testcase_39 AC 844 ms
64,996 KB
testcase_40 AC 803 ms
65,040 KB
testcase_41 AC 787 ms
64,268 KB
testcase_42 AC 813 ms
64,924 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,i(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