結果
問題 | No.410 出会い |
ユーザー |
![]() |
提出日時 | 2025-03-20 21:05:58 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 35 ms / 2,000 ms |
コード長 | 299 bytes |
コンパイル時間 | 173 ms |
コンパイル使用メモリ | 82,080 KB |
実行使用メモリ | 53,904 KB |
最終ジャッジ日時 | 2025-03-20 21:06:09 |
合計ジャッジ時間 | 1,659 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 19 |
ソースコード
# Read input coordinatespx, py = map(int, input().split())qx, qy = map(int, input().split())# Calculate Manhattan distancemanhattan = abs(px - qx) + abs(py - qy)time = manhattan / 2.0# Output the result appropriately formattedif time == int(time):print(int(time))else:print(time)