Submission #1777056


Source Code Expand

#include<bits/stdc++.h>
using namespace std;
int main(){
  char aa;
  string s;
  int ww=0;
  cin>>s;
  for(int i=0;i<26;i++){
    aa='a'+i;
    for(int j=0;j<s.size();j++){
      if(s[j]==aa){
	ww=1;
	break;
      }
    }
    if(ww==0){
      cout<<aa<<endl;
      return(0);
    }
    ww=0;
  }
  cout<<"None"<<endl;
  return(0);
}

Submission Info

Submission Time
Task B - Not Found
User ei1708
Language C++14 (GCC 5.4.1)
Score 200
Code Size 358 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