Submission #1516876


Source Code Expand

#include <bits/stdc++.h>
using namespace std;

int n;
char s[55][55];

int main() {	
	scanf("%d",&n);
	for(int i = 0; i < n; ++i)
		scanf("%s",s[i]);
	for(char c = 'a'; c <= 'z'; ++c) {
		int mn = 1<<20;
		for(int i = 0; i < n; ++i) {
			int f = 0;
			for(int j = strlen(s[i])-1; j >= 0; --j)
				f += s[i][j] == c;
			mn = min(f,mn);
		}
		while(mn--)
			printf("%c",c);
	}
	printf("\n");
}

Submission Info

Submission Time
Task C - Dubious Document
User cephian
Language C++14 (GCC 5.4.1)
Score 300
Code Size 413 Byte
Status AC
Exec Time 1 ms
Memory 256 KB

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:8:16: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d",&n);
                ^
./Main.cpp:10:19: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
   scanf("%s",s[i]);
                   ^

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 300 / 300
Status
AC × 2
AC × 10
Set Name Test Cases
Sample 0_000.txt, 0_001.txt
All 0_000.txt, 0_001.txt, dec_half.txt, hand.txt, max.txt, max_10.txt, max_5.txt, maxx.txt, rnd.txt, single.txt
Case Name Status Exec Time Memory
0_000.txt AC 1 ms 256 KB
0_001.txt AC 1 ms 256 KB
dec_half.txt AC 1 ms 256 KB
hand.txt AC 1 ms 256 KB
max.txt AC 1 ms 256 KB
max_10.txt AC 1 ms 256 KB
max_5.txt AC 1 ms 256 KB
maxx.txt AC 1 ms 256 KB
rnd.txt AC 1 ms 256 KB
single.txt AC 1 ms 256 KB