結果
| 問題 | 
                            No.48 ロボットの操縦
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2019-07-06 16:39:41 | 
| 言語 | Python3  (3.13.1 + numpy 2.2.1 + scipy 1.14.1)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 255 bytes | 
| コンパイル時間 | 103 ms | 
| コンパイル使用メモリ | 12,672 KB | 
| 実行使用メモリ | 10,880 KB | 
| 最終ジャッジ日時 | 2024-09-25 10:09:34 | 
| 合計ジャッジ時間 | 1,735 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge2 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 24 WA * 1 | 
ソースコード
X=int(input()) Y=int(input()) L=int(input()) x_req=abs(X)//L if abs(X)%L==0 else abs(X)//L+1 y_req=abs(Y)//L if abs(Y)%L==0 else abs(Y)//L+1 turn_req = 0 if abs(X)==0 and Y>0 else 2 if Y<0 else 1 #print(x_req,y_req,turn_req) print(x_req+y_req+turn_req)