結果
| 問題 | No.1806 Rotating Golem |
| コンテスト | |
| ユーザー |
trineutron
|
| 提出日時 | 2022-01-14 21:22:09 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 97 ms / 2,000 ms |
| コード長 | 114 bytes |
| 記録 | |
| コンパイル時間 | 355 ms |
| コンパイル使用メモリ | 20,696 KB |
| 実行使用メモリ | 15,488 KB |
| 最終ジャッジ日時 | 2026-05-14 08:01:27 |
| 合計ジャッジ時間 | 2,850 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 13 |
ソースコード
idx = {}
idx['E'] = 0
idx['S'] = 1
idx['W'] = 2
idx['N'] = 3
a = input()
b = input()
print((idx[b] - idx[a]) % 4)
trineutron