結果

問題 No.48 ロボットの操縦
ユーザー pajannat
提出日時 2021-04-05 00:03:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 146 bytes
コンパイル時間 389 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 54,276 KB
最終ジャッジ日時 2024-12-29 09:56:27
合計ジャッジ時間 2,355 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 4 WA * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
X = int(input())
Y = int(input())
L = int(input())

cnt = 0

cnt += abs(math.ceil(X/L)) + abs(math.ceil(Y/L)) + 1

print(cnt)
0