結果
問題 | No.494 yukicoder |
ユーザー | takeya_okino |
提出日時 | 2017-06-20 19:37:46 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 234 bytes |
コンパイル時間 | 811 ms |
コンパイル使用メモリ | 69,272 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-02 08:05:26 |
合計ジャッジ時間 | 1,027 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,824 KB |
testcase_02 | AC | 2 ms
6,824 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 1 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,820 KB |
testcase_08 | AC | 2 ms
6,820 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:13:20: warning: 'index' may be used uninitialized [-Wmaybe-uninitialized] 13 | cout << ans[index] << endl; | ^ main.cpp:9:7: note: 'index' was declared here 9 | int index; | ^~~~~
ソースコード
#include <iostream> using namespace std; int main() { string s; cin >> s; string ans = "yukicoder"; int index; for(int i = 0; i < 9; i++) { if(s[i] != ans[i]) index = i; } cout << ans[index] << endl; return 0; }