Submission #3259767


Source Code Expand

#include <bits/stdc++.h>
#define rep( i, n ) for( int ( i ) = 0; ( i ) < ( n ); ( i )++ )
#define repr( i, n ) for( int ( i ) = ( n ); ( i ) >= 0; ( i )-- )
#define FOR( i, m, n ) for( int ( i ) = ( m ); ( i ) < ( n ); ( i )++ )
#define all( x ) ( x ).begin(), ( x ).end()
typedef long long lint;
using namespace std;

int main( void ){
	
	int n;
	string str[100];
	char last;
	char mae;
	mae = '0';
	
	cin >> n;
	
	rep(i,n){
		cin >> str[i];
	}
	
	last = str[0][str[0].size()-1];
	
	FOR( i, 1, n){
		
		if( last != str[i][0] ){
			cout << "No" << endl;
			return 0;
		}
		
		rep( j, n ){
			if( str[i] == str[j] and i != j ){
			cout << "No" << endl;
			return 0;
			}
		
		}
		
		last = str[i][str[i].size()-1];
		
	}
	
	cout << "Yes" << endl;
	
	return 0;
}

Submission Info

Submission Time
Task B - Shiritori
User flee_rife
Language C++14 (GCC 5.4.1)
Score 200
Code Size 806 Byte
Status AC
Exec Time 1 ms
Memory 256 KB

Judge Result

Set Name All Sample
Score / Max Score 200 / 200 0 / 0
Status
AC × 17
AC × 4
Set Name Test Cases
All max_1, max_2, max_3, max_4, min_1, no1_1, no1_2, no2_1, no2_2, random_1, random_2, sample_01, sample_02, sample_03, sample_04, yes_1, yes_2
Sample sample_01, sample_02, sample_03, sample_04
Case Name Status Exec Time Memory
max_1 AC 1 ms 256 KB
max_2 AC 1 ms 256 KB
max_3 AC 1 ms 256 KB
max_4 AC 1 ms 256 KB
min_1 AC 1 ms 256 KB
no1_1 AC 1 ms 256 KB
no1_2 AC 1 ms 256 KB
no2_1 AC 1 ms 256 KB
no2_2 AC 1 ms 256 KB
random_1 AC 1 ms 256 KB
random_2 AC 1 ms 256 KB
sample_01 AC 1 ms 256 KB
sample_02 AC 1 ms 256 KB
sample_03 AC 1 ms 256 KB
sample_04 AC 1 ms 256 KB
yes_1 AC 1 ms 256 KB
yes_2 AC 1 ms 256 KB