結果

問題 No.2034 Anti Lexicography
ユーザー kisschankisschan
提出日時 2022-10-03 15:45:30
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 667 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 5,376 KB
実行使用メモリ 62,944 KB
最終ジャッジ日時 2024-06-08 11:04:04
合計ジャッジ時間 2,605 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
39,040 KB
testcase_01 AC 56 ms
39,296 KB
testcase_02 AC 53 ms
39,040 KB
testcase_03 AC 54 ms
39,168 KB
testcase_04 AC 56 ms
39,296 KB
testcase_05 AC 146 ms
62,748 KB
testcase_06 AC 145 ms
62,808 KB
testcase_07 AC 149 ms
62,608 KB
testcase_08 AC 162 ms
62,688 KB
testcase_09 AC 152 ms
62,776 KB
testcase_10 AC 152 ms
62,944 KB
testcase_11 AC 153 ms
62,944 KB
testcase_12 AC 144 ms
62,944 KB
testcase_13 AC 56 ms
43,008 KB
testcase_14 AC 54 ms
42,880 KB
testcase_15 AC 54 ms
43,264 KB
testcase_16 AC 61 ms
44,288 KB
testcase_17 AC 62 ms
44,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

function Main(input) {
  // inputにはすべての入力の文字列が与えられるので必要に応じて input.split("\n") などで分割する。

  const data = input.split("\n");
  let number = Number(data[0]);
  let str = data[1].split("")
  let abc =['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z']
  let answer = [];
  for(let i = 0 ; i < number ; i ++){
    let index = abc.findIndex((e) => e === str[i]);
    answer.push(abc[abc.length - index -1]);
  }
  console.log(answer.join(""));
}

// Don't edit this line!
Main(require("fs").readFileSync("/dev/stdin", "utf8"));
0