結果
問題 | No.481 1から10 |
ユーザー | Eclair1015 |
提出日時 | 2018-05-21 14:03:47 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 228 bytes |
コンパイル時間 | 397 ms |
コンパイル使用メモリ | 54,304 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-28 14:56:35 |
合計ジャッジ時間 | 958 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 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 | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | WA | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:16:15: warning: ‘memo’ may be used uninitialized in this function [-Wmaybe-uninitialized] 16 | cout<<memo<<endl; | ^~~~
ソースコード
#include <iostream> using namespace std; int main(){ int A[11]; int j=1,memo; for(int i=1;i<=9;i++){ cin>>A[i]; } for(int i=1;i<=9;i++,j++){ if(A[i]!=j){ memo=j; j++; } } cout<<memo<<endl; return 0; }