結果
問題 | No.113 宝探し |
ユーザー | iad_2889 |
提出日時 | 2019-05-04 16:50:34 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 30 ms / 5,000 ms |
コード長 | 341 bytes |
コンパイル時間 | 140 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-11-16 22:05:16 |
合計ジャッジ時間 | 1,575 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 23 |
ソースコード
from math import sqrt S = input() direction = {"UD":0,"LR":0} for s in S: if s in ("N","S"): walk = 1 if s == "N" else -1 dire = "UD" else: walk = 1 if s == "E" else -1 dire = "LR" direction[dire]+=walk ud = abs(direction["UD"]) lr = abs(direction["LR"]) move = sqrt(ud ** 2 + lr ** 2) print(move)