結果
問題 | No.446 ゆきこーだーの雨と雪 (1) |
ユーザー | iroha168 |
提出日時 | 2016-12-27 22:39:58 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,119 bytes |
コンパイル時間 | 815 ms |
コンパイル使用メモリ | 93,852 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-08 21:21:08 |
合計ジャッジ時間 | 1,468 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
ソースコード
#include <iostream> #include <vector> #include <set> #include <queue> #include <algorithm> #include <string> #include <cmath> #include <functional> #include <iomanip> #include <map> #define _USE_MATH_DEFINES #include <math.h> using namespace std; #define MAX 100000 char ic[] = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9' }; int main() { string a, b; bool f = true; bool zero = true; cin >> a >> b; for (int i = 0; i < a.length(); ++i) { if (find(ic, ic + 10, a[i]) == end(ic)) { f = false; break; } else { if (zero) { if (i != a.length() - 1 && a[i] == '0') { f = false; break; } else { zero = false; } } } } zero = true; for (int i = 0; i < b.length() && f; ++i) { if (find(ic, ic + 10, b[i]) == end(ic)) { f = false; break; } else { if (zero) { if (i != b.length() - 1 && b[i] == '0') { f = false; break; } else { zero = false; } } } } if (f) { if (stoi(a) < 0 && stoi(a) > 12345) f = false; if (stoi(b) < 0 && stoi(b) > 12345) f = false; } cout << (f ? "OK" : "NG") << endl; return 0; }