結果
| 問題 | No.1806 Rotating Golem |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-06-05 12:25:49 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 97 bytes |
| 記録 | |
| コンパイル時間 | 375 ms |
| コンパイル使用メモリ | 20,696 KB |
| 実行使用メモリ | 20,584 KB |
| 最終ジャッジ日時 | 2026-06-03 01:34:32 |
| 合計ジャッジ時間 | 5,116 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 13 |
ソースコード
def D(X): return "NESW".index(X) A = int(input()) B = int(input()) print((D(B) - D(A) + 4) % 4)