結果

問題 No.113 宝探し
ユーザー あかりきあかりき
提出日時 2021-02-09 21:37:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 5,000 ms
コード長 167 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 53,404 KB
最終ジャッジ日時 2024-07-07 03:36:34
合計ジャッジ時間 1,893 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,840 KB
testcase_01 AC 31 ms
52,096 KB
testcase_02 AC 31 ms
53,404 KB
testcase_03 AC 31 ms
52,284 KB
testcase_04 AC 31 ms
52,364 KB
testcase_05 AC 31 ms
52,200 KB
testcase_06 AC 30 ms
52,820 KB
testcase_07 AC 31 ms
52,692 KB
testcase_08 AC 32 ms
52,960 KB
testcase_09 AC 32 ms
52,072 KB
testcase_10 AC 33 ms
52,936 KB
testcase_11 AC 32 ms
52,268 KB
testcase_12 AC 38 ms
52,724 KB
testcase_13 AC 32 ms
53,028 KB
testcase_14 AC 33 ms
53,232 KB
testcase_15 AC 33 ms
53,220 KB
testcase_16 AC 32 ms
52,032 KB
testcase_17 AC 33 ms
51,948 KB
testcase_18 AC 33 ms
52,924 KB
testcase_19 AC 33 ms
52,984 KB
testcase_20 AC 31 ms
52,904 KB
testcase_21 AC 32 ms
52,744 KB
testcase_22 AC 32 ms
51,876 KB
testcase_23 AC 33 ms
52,820 KB
testcase_24 AC 31 ms
52,740 KB
testcase_25 AC 31 ms
52,220 KB
testcase_26 AC 32 ms
52,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s=list(input())
x=0;y=0
for i in range(len(s)):
  if s[i]=='N':
    y+=1
  elif s[i]=='S':
    y-=1
  elif s[i]=='E':
    x+=1
  else:
    x-=1
print((x**2+y**2)**0.5)
0