結果
問題 | No.48 ロボットの操縦 |
ユーザー | intercept6 |
提出日時 | 2020-09-10 15:29:21 |
言語 | TypeScript (5.4.3) |
結果 |
CE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 848 bytes |
コンパイル時間 | 6,009 ms |
コンパイル使用メモリ | 144,964 KB |
最終ジャッジ日時 | 2024-06-02 11:55:21 |
合計ジャッジ時間 | 6,445 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
コンパイルメッセージ
main.ts(1,30): error TS2307: Cannot find module 'fs' or its corresponding type declarations.
ソースコード
import { readFileSync } from 'fs'; function Main(input: string) { const data = input.split('\n'); const positionX = parseInt(data[0]); const positionY = parseInt(data[1]); const distance = parseInt(data[2]); let step = 0; // Y軸方向へ正方向の移動(↑)を行う場合 if (positionY > 0) { step += Math.ceil(positionY / distance); } // X軸へ移動(←→)を行う場合 // 絶対値を取って計算する if (positionX !== 0) { step++; // 回転 step += Math.ceil(Math.abs(positionX) / distance); } // Y軸方向へ負方向の移動(↓)を行う場合 if (positionY < 0) { if (positionX === 0) { step += 2; } else { step++; } step += Math.ceil((-1 * positionY) / distance); } console.log(step); } Main(readFileSync('/dev/stdin', 'utf8'));