結果

問題 No.48 ロボットの操縦
ユーザー Co-3Co-3
提出日時 2020-09-20 00:40:52
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 116 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-23 22:56:31
合計ジャッジ時間 1,952 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 2 WA * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

x = int(input())
y = int(input())
l = int(input())
x = (x**2)**0.5
y = (y**2)**0.5
print(int((x+l-1)//l+(y+l-1)//l))
0