結果

問題 No.48 ロボットの操縦
ユーザー KudeKude
提出日時 2020-09-06 23:28:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 5,000 ms
コード長 186 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 53,732 KB
最終ジャッジ日時 2024-05-06 21:39:31
合計ジャッジ時間 2,134 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,768 KB
testcase_01 AC 39 ms
52,344 KB
testcase_02 AC 42 ms
52,072 KB
testcase_03 AC 39 ms
52,708 KB
testcase_04 AC 39 ms
52,724 KB
testcase_05 AC 38 ms
53,248 KB
testcase_06 AC 39 ms
52,428 KB
testcase_07 AC 38 ms
52,520 KB
testcase_08 AC 37 ms
53,168 KB
testcase_09 AC 38 ms
52,760 KB
testcase_10 AC 38 ms
52,460 KB
testcase_11 AC 39 ms
52,560 KB
testcase_12 AC 39 ms
53,732 KB
testcase_13 AC 39 ms
53,548 KB
testcase_14 AC 39 ms
52,372 KB
testcase_15 AC 39 ms
52,484 KB
testcase_16 AC 39 ms
52,640 KB
testcase_17 AC 39 ms
52,824 KB
testcase_18 AC 38 ms
52,008 KB
testcase_19 AC 39 ms
52,204 KB
testcase_20 AC 38 ms
52,072 KB
testcase_21 AC 38 ms
53,012 KB
testcase_22 AC 39 ms
52,556 KB
testcase_23 AC 39 ms
53,012 KB
testcase_24 AC 40 ms
52,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x = int(input())
y = int(input())
l = int(input())
x = abs(x)
ans = 0
if y < 0:
    ans += 1
    x, y = -y, x
ans += (y + l - 1) // l + (0 if x == 0 else 1 + (x + l - 1) // l)
print(ans)
0