結果

問題 No.380 悪の台本
ユーザー TksiTksi
提出日時 2019-03-04 01:22:24
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 242 ms / 1,000 ms
コード長 484 bytes
コンパイル時間 31 ms
コンパイル使用メモリ 6,692 KB
実行使用メモリ 62,416 KB
最終ジャッジ日時 2024-10-13 01:00:51
合計ジャッジ時間 1,590 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
39,424 KB
testcase_01 AC 58 ms
39,424 KB
testcase_02 AC 55 ms
39,552 KB
testcase_03 AC 55 ms
39,552 KB
testcase_04 AC 66 ms
41,216 KB
testcase_05 AC 87 ms
47,744 KB
testcase_06 AC 93 ms
47,872 KB
testcase_07 AC 242 ms
62,416 KB
testcase_08 AC 66 ms
42,220 KB
testcase_09 AC 84 ms
42,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

const re = {
  digi: /nyo[!-\/,:-@,\[-`,{-~]{0,3}$/ig,
  petit: /nyu[!-\/,:-@,\[-`,{-~]{0,3}$/ig,
  rabi: /[a-z,0-9]/ig,
  gema: /gema[!-\/,:-@,\[-`,{-~]{0,3}$/ig,
  piyo: /pyo[!-\/,:-@,\[-`,{-~]{0,3}$/ig
}

console.log(
  require('fs')
  .readFileSync('/dev/stdin', 'utf8')
  .split('\n')
  .slice(0, -1)
  .map(v => v.split(' '))
  .map(v => v.slice(1, v.length)
    .join ``
    .match(re[v[0]]) &&
    v.length > 1 && re[v[0]] ?
    'CORRECT (maybe)' : 'WRONG!')
  .join('\n')
);
0