結果

問題 No.113 宝探し
ユーザー KazunKazun
提出日時 2020-11-16 04:37:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 5,000 ms
コード長 162 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 53,396 KB
最終ジャッジ日時 2024-07-23 01:25:32
合計ジャッジ時間 2,339 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,856 KB
testcase_01 AC 41 ms
53,396 KB
testcase_02 AC 42 ms
52,200 KB
testcase_03 AC 38 ms
52,632 KB
testcase_04 AC 37 ms
52,624 KB
testcase_05 AC 38 ms
52,512 KB
testcase_06 AC 37 ms
52,380 KB
testcase_07 AC 38 ms
53,080 KB
testcase_08 AC 37 ms
53,340 KB
testcase_09 AC 38 ms
53,012 KB
testcase_10 AC 39 ms
53,260 KB
testcase_11 AC 36 ms
52,540 KB
testcase_12 AC 37 ms
53,088 KB
testcase_13 AC 37 ms
53,220 KB
testcase_14 AC 37 ms
52,332 KB
testcase_15 AC 37 ms
53,112 KB
testcase_16 AC 37 ms
52,080 KB
testcase_17 AC 38 ms
52,052 KB
testcase_18 AC 38 ms
52,656 KB
testcase_19 AC 37 ms
53,076 KB
testcase_20 AC 38 ms
52,328 KB
testcase_21 AC 37 ms
53,244 KB
testcase_22 AC 38 ms
53,068 KB
testcase_23 AC 37 ms
53,336 KB
testcase_24 AC 38 ms
53,064 KB
testcase_25 AC 37 ms
52,288 KB
testcase_26 AC 37 ms
52,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S=input()
X=Y=0

for s in S:
    if s=="N":
        Y+=1
    elif s=="E":
        X+=1
    elif s=="W":
        X-=1
    else:
        Y-=1

print((X*X+Y*Y)**0.5)
0