結果

問題 No.400 鏡
ユーザー IamAFunOfKonIamAFunOfKon
提出日時 2016-09-23 16:41:38
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 391 bytes
コンパイル時間 57 ms
コンパイル使用メモリ 6,824 KB
実行使用メモリ 42,676 KB
最終ジャッジ日時 2024-10-12 23:46:55
合計ジャッジ時間 1,566 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
42,424 KB
testcase_01 AC 68 ms
40,832 KB
testcase_02 AC 69 ms
42,424 KB
testcase_03 AC 73 ms
40,832 KB
testcase_04 AC 72 ms
42,676 KB
testcase_05 AC 67 ms
42,300 KB
testcase_06 AC 68 ms
40,832 KB
testcase_07 AC 69 ms
42,288 KB
testcase_08 AC 69 ms
40,960 KB
testcase_09 AC 68 ms
40,832 KB
testcase_10 AC 69 ms
40,960 KB
testcase_11 AC 68 ms
41,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

var lines = [];
var reader = require('readline').createInterface({
  input: process.stdin,
  output: process.stdout
});
reader.on('line', function (line) {
  lines.push(line);
  var s = lines[0];
  var rv = s.split("").reverse().join("");
  var rp = rv.replace(/</g,"-").replace(/>/g,"<").replace(/-/g,">");
  console.log(rp);
  process.exit(0);
});
process.stdin.on('end', function () {
});
0