0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

文字数指定の出力でミス!padStart()の罠!

Posted at

Paizaの「指定幅での出力」問題に挑戦したら、padStart()でエラー発生。まさかの 「数値には使えません」 で撃沈…。でも、解決策はシンプルだった!


📌 問題: 数値を M 桁の幅で出力する

与えられた NM 桁 になるようにスペースを埋めて出力する。


入力例

42 5

出力例

   42

(”42” の前に3つの半角スペース)


💥 NGコード: 数値のまま padStart() を使ってエラー

最初、シンプルに書いてみたけど、エラーになった…。

const [N, M] = input.split(" ").map(Number);  
console.log(N.padStart(M, ' '));  
// ❌ TypeError: N.padStart is not a function

😱 なぜエラー?

padStart() は 文字列専用! map(Number)N を数値に変換してしまったせい。


✅ OKコード: 文字列のまま padStart() を使う!

数値変換せず、N を 文字列のまま 使えば解決。

const rl = require('readline').createInterface({input: process.stdin});

rl.on('line', (input) => {
    const [N, M] = input.split(" ");  // Nは文字列のまま
    console.log(N.padStart(Number(M), ' '));  // ✅ スペース埋めOK
    rl.close();
});

🔍 修正ポイント
- .map(Number) を 削除 → N を 文字列のまま 扱う

  • padStart(Number(M), ' ')M 桁 までスペース埋め


💡 メモ

padStart() は 文字列専用!
.map(Number) は便利だけど、型変換に要注意
✅ 文字列として扱う場面なら、余計な変換は不要


🎯 まとめ: 型の意識、大事!

padStart() を使うなら、文字列かどうか確認!
map(Number) を使うと、意図せず型が変わることがある
JavaScriptの型変換は 無意識にやるとハマる

こういう 一見簡単な問題 ほど、意外と落とし穴があるんだよね…。


僕の失敗談と解決話!

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?