結果

問題 No.48 ロボットの操縦
ユーザー kisaragi211
提出日時 2018-01-13 21:36:58
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 157 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-12-24 00:58:51
合計ジャッジ時間 1,956 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 7 WA * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import ceil
X = abs(int(input()))
Y = abs(int(input()))
L = int(input())
if X==0 or Y==0:
    print(ceil((X+Y)/L))
else:
    print(ceil((X+Y)/L)+1)
0