結果

問題 No.400 鏡
ユーザー QtaroQtaro
提出日時 2016-07-31 20:25:06
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 941 ms / 2,000 ms
コード長 226 bytes
コンパイル時間 10,230 ms
コンパイル使用メモリ 281,884 KB
実行使用メモリ 63,676 KB
最終ジャッジ日時 2024-06-29 14:12:28
合計ジャッジ時間 22,191 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 940 ms
63,616 KB
testcase_01 AC 930 ms
63,412 KB
testcase_02 AC 927 ms
63,372 KB
testcase_03 AC 927 ms
63,624 KB
testcase_04 AC 930 ms
63,400 KB
testcase_05 AC 938 ms
63,312 KB
testcase_06 AC 936 ms
63,620 KB
testcase_07 AC 934 ms
63,512 KB
testcase_08 AC 941 ms
63,628 KB
testcase_09 AC 930 ms
63,452 KB
testcase_10 AC 937 ms
63,676 KB
testcase_11 AC 939 ms
63,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

object Main extends App {
  val sc = new java.util.Scanner(System.in)
  val mirror = sc.nextLine.map { case (ch) =>
      ch match {
        case '<' => '>'
        case '>' => '<'
      }
  }.reverse
  mirror.foreach(print)
}
0