結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー dohatsutsudohatsutsu
提出日時 2016-11-18 22:24:57
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 404 bytes
コンパイル時間 1,613 ms
コンパイル使用メモリ 160,624 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-04 17:23:20
合計ジャッジ時間 1,821 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

bool check(string s){
  if(s=="0")return true;
  if(s[0]=='0')return false;
  for(char ch:s){
    if('0'<=ch&&ch<='9'){
    }else{
      return false;
    }
  }

  int num;
  stringstream ss;
  ss<<s;
  ss>>num;

  return (0<=num && num<= 12345);
}

int main(){
  string A,B;
  cin>>A>>B;
  if(check(A)&&check(B))cout<<"OK"<<endl;
  else cout<<"NO"<<endl;
}
0