結果
| 問題 |
No.48 ロボットの操縦
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-07-06 16:40:47 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 31 ms / 5,000 ms |
| コード長 | 256 bytes |
| コンパイル時間 | 170 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 10,880 KB |
| 最終ジャッジ日時 | 2024-09-25 10:10:41 |
| 合計ジャッジ時間 | 1,844 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 25 |
ソースコード
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)