結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 WA -
testcase_03 AC 2 ms
5,248 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 2 ms
5,376 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 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 = "EWSN";
  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