結果
問題 |
No.1217 せしすせそ
|
ユーザー |
|
提出日時 | 2020-09-12 06:43:51 |
言語 | JavaScript (node v23.5.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 289 bytes |
コンパイル時間 | 246 ms |
コンパイル使用メモリ | 6,816 KB |
実行使用メモリ | 41,456 KB |
最終ジャッジ日時 | 2024-12-30 09:23:28 |
合計ジャッジ時間 | 1,918 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | RE * 3 |
other | RE * 10 |
ソースコード
const { createInterface: ci } = require('readline') const input = await new Promise(res => ci(process.stdin, process.stdout).once('line', res)); const list = 'abcdefghijklmnopqrstuvwxyz' const i = list.split('').findIndex((c, i) => c !== input[i]) console.log(`${list[i]}to${input[i]}`)