結果
問題 | No.701 ひとりしりとり |
ユーザー | YOS G-spec |
提出日時 | 2018-10-24 23:37:45 |
言語 | JavaScript (node v21.7.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 403 bytes |
コンパイル時間 | 167 ms |
コンパイル使用メモリ | 6,952 KB |
実行使用メモリ | 58,032 KB |
最終ジャッジ日時 | 2024-10-13 00:51:25 |
合計ジャッジ時間 | 3,995 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 64 ms
42,180 KB |
testcase_01 | AC | 67 ms
42,440 KB |
testcase_02 | AC | 69 ms
41,088 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
ソースコード
const rl=require("readline").createInterface(process.stdin,process.stdout); rl.once("line",n=>{ for(var i=1;i<=(0|n);i=0|i+1){ console.log("a"+(""+i) .replace("0","a") .replace("1","b") .replace("2","c") .replace("3","d") .replace("4","e") .replace("5","f") .replace("6","g") .replace("7","h") .replace("8","i") .replace("9","j") +(i==(0|n)? "n": "a")); } process.exit(); });