結果
問題 |
No.48 ロボットの操縦
|
ユーザー |
![]() |
提出日時 | 2018-11-26 20:19:46 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 32 ms / 5,000 ms |
コード長 | 227 bytes |
コンパイル時間 | 427 ms |
コンパイル使用メモリ | 12,032 KB |
実行使用メモリ | 10,240 KB |
最終ジャッジ日時 | 2025-01-03 02:23:13 |
合計ジャッジ時間 | 2,084 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 25 |
ソースコード
x = input() y = input() l = input() X = int(x) Y = int(y) L = int(l) a = -( (-abs(X)) // L) b = -( (-abs(Y)) // L) if Y >= 0: if X != 0: c = a + b + 1 else: c = a + b else: c = a + b + 2 print(c)