結果
問題 |
No.446 ゆきこーだーの雨と雪 (1)
|
ユーザー |
|
提出日時 | 2022-07-22 16:28:37 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 706 bytes |
コンパイル時間 | 1,161 ms |
コンパイル使用メモリ | 131,808 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-04 00:02:57 |
合計ジャッジ時間 | 1,903 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 WA * 1 |
other | AC * 8 WA * 5 |
ソースコード
#define _USE_MATH_DEFINES #include<iostream> #include<vector> #include<algorithm> #include<cmath> #include<string> #include<iomanip> #include<numeric> #include<queue> #include<deque> #include<stack> #include<set> #include<map> #include<random> using namespace std; typedef long long ll; const int mod=1e9+7; int main(){ string a,b; cin>>a>>b; for(auto x:a) if(x<'0'||'9'<x) cout<<"NG"<<endl,exit(0); for(auto x:b) if(x<'0'||'9'<x) cout<<"NG"<<endl,exit(0); if(a[0]=='0'&&a!="0") cout<<"NG"<<endl,exit(0); if(b[0]=='0'&&b!="0") cout<<"NG"<<endl,exit(0); if(a.size()==5&&a>"12345") cout<<"NG"<<endl,exit(0); if(b.size()==5&&b>"12345") cout<<"NG"<<endl,exit(0); cout<<"YES"<<endl; }