結果

問題 No.400 鏡
ユーザー QtaroQtaro
提出日時 2016-07-31 20:33:09
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 848 ms / 2,000 ms
コード長 152 bytes
コンパイル時間 7,512 ms
コンパイル使用メモリ 264,548 KB
実行使用メモリ 65,392 KB
最終ジャッジ日時 2024-06-29 14:12:52
合計ジャッジ時間 19,064 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 797 ms
65,108 KB
testcase_01 AC 828 ms
65,220 KB
testcase_02 AC 808 ms
65,392 KB
testcase_03 AC 830 ms
65,200 KB
testcase_04 AC 827 ms
65,348 KB
testcase_05 AC 839 ms
65,164 KB
testcase_06 AC 832 ms
65,312 KB
testcase_07 AC 825 ms
65,376 KB
testcase_08 AC 848 ms
65,352 KB
testcase_09 AC 822 ms
65,340 KB
testcase_10 AC 805 ms
65,124 KB
testcase_11 AC 823 ms
65,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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