結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー SSRS
提出日時 2020-08-07 07:40:40
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 416 bytes
コンパイル時間 494 ms
コンパイル使用メモリ 66,208 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-22 14:42:30
合計ジャッジ時間 1,131 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
bool ok(string S){
	int N = S.size();
	if (N > 1 && S[0] == '0'){
		return false;
	}
	for (int i = 0; i < N; i++){
		if (!('0' <= S[i] && S[i] <= '9')){
			return false;
		}
	}
	if (stoi(S) > 12345){
		return false;
	}
	return true;
}
int main(){
	string A;
	cin >> A;
	string B;
	cin >> B;
	if (ok(A) && ok(B)){
		cout << "OK" << endl;
	} else {
		cout << "NG" << endl;
	}
}
0