結果

問題 No.292 芸名
ユーザー 5h0t4r05h0t4r0
提出日時 2015-11-02 14:53:50
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 996 ms / 2,000 ms
コード長 315 bytes
コンパイル時間 10,244 ms
コンパイル使用メモリ 265,552 KB
実行使用メモリ 64,016 KB
最終ジャッジ日時 2024-06-29 04:24:57
合計ジャッジ時間 24,461 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 948 ms
63,816 KB
testcase_01 AC 937 ms
63,768 KB
testcase_02 AC 946 ms
63,916 KB
testcase_03 AC 958 ms
63,748 KB
testcase_04 AC 950 ms
63,824 KB
testcase_05 AC 956 ms
63,900 KB
testcase_06 AC 949 ms
64,016 KB
testcase_07 AC 987 ms
63,956 KB
testcase_08 AC 996 ms
63,764 KB
testcase_09 AC 949 ms
63,896 KB
testcase_10 AC 954 ms
63,844 KB
testcase_11 AC 965 ms
63,760 KB
testcase_12 AC 957 ms
63,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

object Yuki292 extends App{
  val input = new java.util.Scanner(System.in)
  val s = input.next
  val t = input.nextInt
  val u = input.nextInt

  val result = s.zipWithIndex.map{ case (x, index) => 
    index match {
     case i if i == t || i == u => ""
     case _ => x
     }
   }.mkString

   println(result)
}
0