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