結果
問題 | No.18 うーさー暗号 |
ユーザー | Kuphony |
提出日時 | 2016-03-16 21:07:55 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 762 bytes |
コンパイル時間 | 643 ms |
コンパイル使用メモリ | 62,356 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-07 06:01:23 |
合計ジャッジ時間 | 1,261 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,948 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,944 KB |
コンパイルメッセージ
main.cpp: In function ‘std::string convertString(std::string, int)’: main.cpp:15:16: warning: ‘currentNum’ may be used uninitialized in this function [-Wmaybe-uninitialized] 15 | currentNum -= n; | ~~~~~~~~~~~^~~~
ソースコード
#include <iostream> #include <algorithm> #include <string> using namespace std; string convertString(string a,int n){ int currentNum; string list[26] = {"A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"}; for (int i = 0; i < 26; i++) { if(list[i] == a){ currentNum = i; break; } } currentNum -= n; while(currentNum < 0){ currentNum += 26; } return list[currentNum%26]; } int main(int argc, const char * argv[]) { string s; cin >> s; string result; string tmp; for (int i = 0; i < s.length(); i++) { tmp = s[i]; result += convertString(tmp,i+1); } cout << result; cout << "\n"; }