結果

問題 No.48 ロボットの操縦
ユーザー kazutaka-machidakazutaka-machida
提出日時 2023-07-07 17:17:33
言語 TypeScript
(5.7.2)
結果
AC  
実行時間 64 ms / 5,000 ms
コード長 470 bytes
コンパイル時間 7,623 ms
コンパイル使用メモリ 228,912 KB
実行使用メモリ 39,552 KB
最終ジャッジ日時 2024-12-31 17:00:53
合計ジャッジ時間 10,054 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

function Main(input: string) {
  const inputs = input.split("\n");
  const X = Math.abs(Number(inputs[0]))
  const Y = Number(inputs[1])
  const L = Number(inputs[2])
  
  let count = 0
  
  if (Y != 0) {
  	count += Math.ceil(Math.abs(Y)/L)
  	if (X == 0 && Y < 0) {
  		count += 2
  	} else if (Y < 0) {
  		count += 1
  	}
  }
  if (X != 0) {
  	count += 1
	count += Math.ceil(X/L)
  }
  
  console.log(count)
}
Main(require("fs").readFileSync("/dev/stdin", "utf8"));
0