제출 #157559

#제출 시각아이디문제언어결과실행 시간메모리
157559DodaElder (COCI19_elder)C++14
20 / 50
2 ms504 KiB
#include <iostream>

using namespace std;
int x[95];

int main () {
char a,b,c;
int n,d;
cin >> a;
cin >> n;
x[a] = 1;
c = a;

for (int i = 0; i<n ; i++){
	cin >> a >> b;
	if (b == c){
		c = a;
		if (x[c]==0){
			x[c]=1;
		}
	}
}

for (int i = 'A'; i<100;i++){
	if (x[i] == 1){
		d++;
	}
}


cout << c << "\n";
cout << d-1;
return 0;
}

컴파일 시 표준 에러 (stderr) 메시지

elder.cpp: In function 'int main()':
elder.cpp:11:4: warning: array subscript has type 'char' [-Wchar-subscripts]
 x[a] = 1;
    ^
elder.cpp:18:10: warning: array subscript has type 'char' [-Wchar-subscripts]
   if (x[c]==0){
          ^
elder.cpp:19:7: warning: array subscript has type 'char' [-Wchar-subscripts]
    x[c]=1;
       ^
elder.cpp:25:9: warning: iteration 30 invokes undefined behavior [-Waggressive-loop-optimizations]
  if (x[i] == 1){
      ~~~^
elder.cpp:24:20: note: within this loop
 for (int i = 'A'; i<100;i++){
                   ~^~~~
elder.cpp:26:4: warning: 'd' may be used uninitialized in this function [-Wmaybe-uninitialized]
   d++;
   ~^~
#Verdict Execution timeMemoryGrader output
Fetching results...