結果
問題 | No.1806 Rotating Golem |
ユーザー | トミー |
提出日時 | 2023-12-28 00:53:06 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 190 bytes |
コンパイル時間 | 2,357 ms |
コンパイル使用メモリ | 201,836 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-27 15:37:19 |
合計ジャッジ時間 | 2,536 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 13 |
ソースコード
#include<bits/stdc++.h> using namespace std; int main(){ string s="NESW"; string a,b; int la,lb; cin>>a>>b; la=s.find(a); lb=s.find(b); if(la>lb){ lb+=4; } cout<<lb-la<<endl; }