結果

問題 No.48 ロボットの操縦
ユーザー kjnho
提出日時 2017-02-25 19:38:50
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 134 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-11 15:01:09
合計ジャッジ時間 1,868 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other RE * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

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

a = int(math.floor(X/L) + math.floor(Y/L))
b = 1 if (X != 0) else 0

print(a + b)
0