結果
問題 |
No.446 ゆきこーだーの雨と雪 (1)
|
ユーザー |
|
提出日時 | 2018-01-13 21:12:30 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 667 bytes |
コンパイル時間 | 1,811 ms |
コンパイル使用メモリ | 168,660 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-24 00:58:45 |
合計ジャッジ時間 | 2,230 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 13 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define REP(i, n) for(int i = 0; i < n; i++) int main() { vector<string> vs(2); cin >> vs[0] >> vs[1]; REP(i, 2) { REP(j, vs[i].length()) { if ('0' <= vs[i][j] && vs[i][j] <= '9') continue; else { cout << "NG" << endl; return 0; } } if (vs[i].length() != 1 && vs[i][0] == '0') { cout << "NG" << endl; return 0; } if (stoi(vs[i]) > 12345 || stoi(vs[i]) < 0) { cout << "NG" << endl; return 0; } } cout << "OK" << endl; return 0; }