結果

問題 No.730 アルファベットパネル
ユーザー aguroshouaguroshou
提出日時 2018-09-07 21:32:00
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 908 bytes
コンパイル時間 847 ms
コンパイル使用メモリ 85,900 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-06 19:47:08
合計ジャッジ時間 1,329 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include <algorithm>
#include<string>
#include <bitset>
#include <vector>
#include <functional>
#include <climits>
#include <iomanip>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <iomanip>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
using namespace std;
using ll = long long;
ll n, m;
ll sum = 0;
ll memo[50][50] = {};
void kansuu(ll num, ll visited[10]) {

}
int main()
{
	ll a, b = 0, c = 0, d = 0;
	ll l;
	char C[1000][1000] = {};
	ll h, w, sy, sx, gy, gx;
	queue<int> x, y;
	string s;
	cin >> s;
	ll z[100] = {};
	for (int i = 0; i < s.length(); i++)
	{
		if (z[s[i]-'A']==1)
		{
			cout <<"NO"<< endl;
			return 0;
		}
		else
		{
			z[s[i] - 'A'] = 1;
		}
	}
	cout << "YES" << endl;

	//cout << sum << endl;
	//cout <<  endl;

	return 0;
}
//memcpy(x, visited, sizeof(ll)*n);
//void kansuu(ll num, ll visited[10]) {}
//kansuu(1, zz);
0