結果
| 問題 |
No.365 ジェンガソート
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-06-19 07:03:23 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
CE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 303 bytes |
| コンパイル時間 | 340 ms |
| コンパイル使用メモリ | 51,036 KB |
| 最終ジャッジ日時 | 2024-11-14 19:45:25 |
| 合計ジャッジ時間 | 827 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:7:3: error: ‘vector’ was not declared in this scope
7 | vector<int> a(n, 0); // a[n]
| ^~~~~~
main.cpp:3:1: note: ‘std::vector’ is defined in header ‘<vector>’; did you forget to ‘#include <vector>’?
2 | #include <algorithm>
+++ |+#include <vector>
3 | using namespace std;
main.cpp:7:10: error: expected primary-expression before ‘int’
7 | vector<int> a(n, 0); // a[n]
| ^~~
main.cpp:8:41: error: ‘a’ was not declared in this scope
8 | for(int i=0; i<n; ++i) { scanf("%d", &a[i]); }
| ^
main.cpp:11:8: error: ‘a’ was not declared in this scope
11 | if(a[i] == res) { --res; }
| ^
main.cpp:6:15: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
6 | int n; scanf("%d", &n);
| ~~~~~^~~~~~~~~~
ソースコード
#include <iostream>
#include <algorithm>
using namespace std;
int main(void) {
int n; scanf("%d", &n);
vector<int> a(n, 0); // a[n]
for(int i=0; i<n; ++i) { scanf("%d", &a[i]); }
int res = n;
for(int i=n-1; i>=0; --i) {
if(a[i] == res) { --res; }
}
printf("%d\n", res);
return 0;
}