結果
問題 |
No.446 ゆきこーだーの雨と雪 (1)
|
ユーザー |
![]() |
提出日時 | 2020-04-20 10:28:28 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 619 bytes |
コンパイル時間 | 1,668 ms |
コンパイル使用メモリ | 168,032 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-06 08:32:37 |
合計ジャッジ時間 | 2,045 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 12 WA * 1 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { string A, B; cin >> A >> B; string ans = "OK"; int a = 0; for( int i = 0; i < A.size(); i++ ) { if( isdigit( A[i] ) == false ) { ans = "NG"; break; } a = a * 10 + A[i] - '0'; } if( ans == "OK" ) { if( a && A[0] == '0' ) ans = "NG"; if( a > 12345 ) ans = "NG"; int b = 0; for( int i = 0; i < B.size(); i++ ) { if( isdigit( B[i] ) == false ) { ans = "NG"; break; } b = b * 10 + B[i] - '0'; } if( ans == "OK" ) { if( b && B[0] == '0' ) ans = "NG"; if( b > 12345 ) ans = "NG"; } } cout << ans << endl; }