結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー SSRSSSRS
提出日時 2020-08-07 07:40:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 416 bytes
コンパイル時間 512 ms
コンパイル使用メモリ 65,436 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-23 21:09:52
合計ジャッジ時間 1,813 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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