結果
問題 | No.380 悪の台本 |
ユーザー | Tksi |
提出日時 | 2019-03-04 00:45:50 |
言語 | JavaScript (node v21.7.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 479 bytes |
コンパイル時間 | 30 ms |
コンパイル使用メモリ | 6,692 KB |
実行使用メモリ | 39,680 KB |
最終ジャッジ日時 | 2024-10-13 01:00:40 |
合計ジャッジ時間 | 1,106 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
//const input = require('fs').readFileSync('/dev/stdin', 'utf8') input = ` petiT nyu petit nyu `; const re = { digi: /nyo[!-\/,:-@,{-~]{0,3}$/ig, petit: /nyu[!-\/,:-@,{-~]{0,3}$/ig, rabi: /[a-z]/ig, gema: /gema[!-\/,:-@,{-~]{0,3}$/ig, piyo: /pyo[!-\/,:-@,{-~]{0,3}$/ig } for (const v of input.trim().split('\n').map(v => v.split(' '))) { console.log(v.slice(1, v.length).join ``.match(re[v[0]]) && v.length > 1 && re[v[0]] ? 'CORRECT (maybe)' : 'WRONG!'); }