下のコードを実行すると、
Segmentation fault: 11
というエラーが表示されます。
ベクトルに値を格納するのは、問題なく実行できました。
制約条件
2 <= n <= 10^5
1 <= a_i <= n
input.txt
3 // n 3 // a_1 1 // a_2 2 // a_3
c++
1#include<bits/stdc++.h> 2using namespace std; 3 4int main() { 5 freopen("../input.txt", "r", stdin); 6 7 int n; 8 cin >> n; 9 int a[100010]; 10 for (int i = 0; i < n; ++i) { 11 scanf("%d",&a[i]); 12 } 13 cout << a[1] << endl; 14 return 0; 15}
回答5件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/12/04 16:35
2019/12/04 22:50
2019/12/05 13:16