結果

問題 No.48 ロボットの操縦
ユーザー 67oYG9nh2YMmIci67oYG9nh2YMmIci
提出日時 2020-06-25 21:05:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 476 ms / 5,000 ms
コード長 235 bytes
コンパイル時間 698 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,312 KB
最終ジャッジ日時 2024-07-03 21:48:09
合計ジャッジ時間 13,263 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 470 ms
44,180 KB
testcase_01 AC 461 ms
44,180 KB
testcase_02 AC 443 ms
44,060 KB
testcase_03 AC 448 ms
44,312 KB
testcase_04 AC 445 ms
43,804 KB
testcase_05 AC 457 ms
44,184 KB
testcase_06 AC 455 ms
43,800 KB
testcase_07 AC 453 ms
43,928 KB
testcase_08 AC 468 ms
43,932 KB
testcase_09 AC 466 ms
44,184 KB
testcase_10 AC 449 ms
43,800 KB
testcase_11 AC 453 ms
43,808 KB
testcase_12 AC 451 ms
43,932 KB
testcase_13 AC 476 ms
43,804 KB
testcase_14 AC 476 ms
44,056 KB
testcase_15 AC 460 ms
44,032 KB
testcase_16 AC 457 ms
44,052 KB
testcase_17 AC 456 ms
43,808 KB
testcase_18 AC 451 ms
43,908 KB
testcase_19 AC 457 ms
43,796 KB
testcase_20 AC 458 ms
44,060 KB
testcase_21 AC 453 ms
43,936 KB
testcase_22 AC 454 ms
44,180 KB
testcase_23 AC 457 ms
43,936 KB
testcase_24 AC 461 ms
44,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
X=int(input())
Y=int(input())
L=int(input())
order=0
if X==0 and Y==0:
    pass
elif Y<0:
    order+=2
elif X==0:
    pass
else:
    order+=1
order+=int(np.ceil(abs(X)/L)+np.ceil(abs(Y)/L))
print(order)
0