結果

問題 No.1806 Rotating Golem
ユーザー shojinshojin
提出日時 2024-05-09 21:25:57
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 271 bytes
コンパイル時間 6,028 ms
コンパイル使用メモリ 271,988 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-09 21:26:03
合計ジャッジ時間 4,113 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 WA -
testcase_04 AC 1 ms
6,940 KB
testcase_05 WA -
testcase_06 AC 1 ms
6,944 KB
testcase_07 WA -
testcase_08 AC 1 ms
6,940 KB
testcase_09 WA -
testcase_10 AC 1 ms
6,944 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 1 ms
6,944 KB
testcase_15 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:15:7: warning: 'i' may be used uninitialized [-Wmaybe-uninitialized]
   15 |   int ans = j - i;
      |       ^~~
main.cpp:9:7: note: 'i' was declared here
    9 |   int i, j;
      |       ^
main.cpp:15:7: warning: 'j' may be used uninitialized [-Wmaybe-uninitialized]
   15 |   int ans = j - i;
      |       ^~~
main.cpp:9:10: note: 'j' was declared here
    9 |   int i, j;
      |          ^

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main(){
  char A, B;
  cin >> A >> B;
  
  string s = "NWSE";
  int i, j;
  for(int k = 0; k < 4; k++){
    if(A == s[k]) i = k;
    if(B == s[k]) j = k;
  }
  
  int ans = j - i;
  if(ans < 0) ans += 4;
  cout << ans;
}
0