結果
問題 | No.1806 Rotating Golem |
ユーザー | #leucobird |
提出日時 | 2022-02-19 09:29:04 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 302 bytes |
コンパイル時間 | 1,334 ms |
コンパイル使用メモリ | 166,124 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-29 10:14:40 |
合計ジャッジ時間 | 1,981 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:14:19: warning: 'n_b' may be used uninitialized [-Wmaybe-uninitialized] 14 | cout << abs(n_a - n_b) << endl; | ~~~~^~~~~ main.cpp:9:12: note: 'n_b' was declared here 9 | int n_a, n_b; | ^~~ main.cpp:14:19: warning: 'n_a' may be used uninitialized [-Wmaybe-uninitialized] 14 | cout << abs(n_a - n_b) << endl; | ~~~~^~~~~ main.cpp:9:7: note: 'n_a' was declared here 9 | int n_a, n_b; | ^~~
ソースコード
#include <bits/stdc++.h> using namespace std; int main(void) { char a, b; cin >> a >> b; string str_dir = "NESW"; int n_a, n_b; for (int i = 0; i < str_dir.size(); i++) { if (a == str_dir[i]) n_a = i; if (b == str_dir[i]) n_b = i; } cout << abs(n_a - n_b) << endl; return 0; }