結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー ikdikd
提出日時 2016-11-19 00:01:30
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 570 bytes
コンパイル時間 433 ms
コンパイル使用メモリ 56,572 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-26 08:59:41
合計ジャッジ時間 1,003 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>

using namespace std;

bool Alp(string s){

   bool ret=false;
   for(int i=0; i<s.size(); i++){
      ret|=(('a'<=s[i]&&s[i]<='z')||('A'<=s[i]&&s[i]<='Z'));
   }
   return ret;
}

bool Zero(string s){

   return (s[0]=='0')&(s.size()>1);
}

int main(){

   string A, B;
   cin>> A>> B;

   if(Alp(A)||Alp(B)){
      cout<< "NG"<< endl;
      return 0;
   }
   if(Zero(A)||Zero(B)){
      cout<< "NG"<< endl;
      return 0;
   }
   if(stoi(A)<=12345&&stoi(B)<=12345){
      cout<< "OK"<< endl;
   }else{
      cout<< "NG"<< endl;
   }

   return 0;
}
0