結果
問題 | No.113 宝探し |
ユーザー | Suunn |
提出日時 | 2018-11-20 07:22:41 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 119 ms / 5,000 ms |
コード長 | 499 bytes |
コンパイル時間 | 1,906 ms |
コンパイル使用メモリ | 74,200 KB |
実行使用メモリ | 41,280 KB |
最終ジャッジ日時 | 2024-11-16 21:59:26 |
合計ジャッジ時間 | 5,736 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 23 |
ソースコード
import java.util.Scanner; public class Main{ public static void main(String args[])throws Exception{ Scanner sc = new Scanner(System.in); String S = sc.next(); int x = 0; int y = 0; int L = S.length(); for(int i=0;i<L;i++){ char c = S.charAt(i); switch(c){ case 'N': y++; break; case 'E': x++; break; case 'W': x--; break; case 'S': y--; break; } } System.out.println(Math.pow((double)(x*x+y*y), 0.5)); } }