結果

問題 No.48 ロボットの操縦
ユーザー 10isiatama
提出日時 2024-12-06 16:15:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 90 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 52,096 KB
最終ジャッジ日時 2024-12-06 16:15:09
合計ジャッジ時間 2,849 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 4 WA * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

x = int(input())
y = int(input())
l = int(input())
print((y+l-1)//l + (y!=0) + (x+l-1)//l)
0