結果

問題 No.1806 Rotating Golem
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-01-14 22:29:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 128 bytes
コンパイル時間 913 ms
コンパイル使用メモリ 82,044 KB
実行使用メモリ 53,716 KB
最終ジャッジ日時 2024-11-20 12:03:28
合計ジャッジ時間 2,204 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,100 KB
testcase_01 AC 39 ms
53,100 KB
testcase_02 AC 39 ms
53,108 KB
testcase_03 AC 39 ms
51,800 KB
testcase_04 AC 39 ms
52,684 KB
testcase_05 AC 40 ms
53,280 KB
testcase_06 AC 40 ms
53,716 KB
testcase_07 AC 39 ms
52,012 KB
testcase_08 AC 40 ms
52,464 KB
testcase_09 AC 40 ms
52,140 KB
testcase_10 AC 38 ms
52,068 KB
testcase_11 AC 39 ms
52,972 KB
testcase_12 AC 40 ms
52,012 KB
testcase_13 AC 39 ms
53,504 KB
testcase_14 AC 39 ms
52,244 KB
testcase_15 AC 39 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a = input()
b = input()

l = list("NESW")
s = l.index(a)
ans = 0
while a != b:
    s += 1
    a = l[s%4]
    ans += 1
print(ans)
0