結果

問題 No.993 青色
ユーザー ose20ose20
提出日時 2021-02-27 21:29:45
言語 TypeScript
(5.2.2)
結果
WA  
実行時間 -
コード長 141 bytes
コンパイル時間 9,032 ms
コンパイル使用メモリ 254,416 KB
実行使用メモリ 44,520 KB
最終ジャッジ日時 2023-07-26 01:33:23
合計ジャッジ時間 9,039 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import * as fs from 'fs';
const input = fs.readFileSync('/dev/stdin', 'utf8');

let result = input.replace(/ao/g, 'ki');
console.log(result);
0