結果
問題 |
No.48 ロボットの操縦
|
ユーザー |
![]() |
提出日時 | 2020-03-14 02:31:04 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 152 bytes |
コンパイル時間 | 151 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-11-23 18:09:04 |
合計ジャッジ時間 | 2,003 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 17 WA * 8 |
ソースコード
x=int(input()) y=int(input()) l=int(input()) if x==0 and y>0: print(-(-abs(x)//l)+(-(-abs(y)//l))) else: print(-(-abs(x)//l)+(-(-abs(y)//l))+1)