結果

問題 No.48 ロボットの操縦
ユーザー 87urotas87urotas
提出日時 2018-11-15 22:03:54
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 34 ms / 5,000 ms
コード長 177 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-12-24 14:05:04
合計ジャッジ時間 1,941 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

x = int(input())
y = int(input())
z = int(input())
c = 0
if y < 0 :
    c += 2
elif x != 0 :
    c += 1
c += abs(x) // z + (x % z != 0)
c += abs(y) // z + (y % z != 0)

print(c)
0