Submission #1777038


Source Code Expand

#include <iostream>
#include <algorithm>
#include <array>
#include <cstdint>
#include <functional>
#include <map>
#include <math.h>
#include <queue>
#include <set>
#include <stdlib.h>
#include <string>
#include <vector>

#define INF 1000000000
#define MOD 1000000007
#define ll long long
#define rep(i, a, b) for (int i = (a); i < (b); ++i)
#define bitget(a, b) (((a) >> (b)) & 1)
#define vint vector<int>
#define vvint vector<vector<int>>
#define vsort(x) sort(x.begin(), x.end())

using int32 = int_fast32_t;
using int64 = int_fast64_t;
using uint32 = uint_fast32_t;
using uint64 = uint_fast64_t;

using namespace std;

int main() {
	string s;
	cin >> s;
	int c[26] = {};
	rep(i, 0, s.length()){
		c[s[i] - 'a']++;
	}
	char ans;
	int f = 0;
	rep(i, 0, 26){
		if (c[i] == 0){
			ans = 'a' + i;
			f = 1;
			break;
		}
	}
	if (f){
		cout << ans << endl;
	}
	else{
		cout << "None" << endl;
		}
	return 0;
}

Submission Info

Submission Time
Task B - Not Found
User noshi91
Language C++14 (GCC 5.4.1)
Score 200
Code Size 960 Byte
Status AC
Exec Time 5 ms
Memory 512 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 200 / 200
Status
AC × 3
AC × 15
Set Name Test Cases
Sample sample1.txt, sample2.txt, sample3.txt
All sample1.txt, sample2.txt, sample3.txt, 1.txt, 2.txt, 3.txt, 4.txt, 5.txt, 6.txt, 7.txt, 8.txt, 9.txt, sample1.txt, sample2.txt, sample3.txt
Case Name Status Exec Time Memory
1.txt AC 1 ms 256 KB
2.txt AC 1 ms 256 KB
3.txt AC 2 ms 256 KB
4.txt AC 5 ms 512 KB
5.txt AC 5 ms 512 KB
6.txt AC 5 ms 512 KB
7.txt AC 4 ms 512 KB
8.txt AC 5 ms 512 KB
9.txt AC 5 ms 512 KB
sample1.txt AC 1 ms 256 KB
sample2.txt AC 1 ms 256 KB
sample3.txt AC 1 ms 256 KB