結果

問題 No.993 青色
ユーザー j0tdj0td
提出日時 2020-03-01 22:55:11
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 181 bytes
コンパイル時間 73 ms
コンパイル使用メモリ 5,456 KB
実行使用メモリ 42,688 KB
最終ジャッジ日時 2023-08-03 03:37:58
合計ジャッジ時間 1,367 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
42,552 KB
testcase_01 AC 88 ms
42,688 KB
testcase_02 AC 80 ms
42,632 KB
testcase_03 AC 80 ms
42,508 KB
testcase_04 AC 79 ms
42,580 KB
testcase_05 AC 78 ms
42,636 KB
testcase_06 AC 79 ms
42,628 KB
testcase_07 AC 74 ms
42,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

const reader = require('readline').createInterface({
  input: process.stdin,
  output: process.stdout
});

reader.on('line', line => {
  console.log(line.replace(/ao/g, 'ki'));
});
0