結果
問題 |
No.48 ロボットの操縦
|
ユーザー |
|
提出日時 | 2018-01-13 21:40:48 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 165 bytes |
コンパイル時間 | 96 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-12-24 00:58:54 |
合計ジャッジ時間 | 1,803 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 17 WA * 8 |
ソースコード
from math import ceil X = abs(int(input())) Y = abs(int(input())) L = int(input()) x = ceil(X/L) y = ceil(Y/L) if X==0 or Y==0: print(x+y) else: print(x+y+1)