結果
問題 | No.446 ゆきこーだーの雨と雪 (1) |
ユーザー | ouoz1V |
提出日時 | 2016-11-19 00:00:31 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 781 bytes |
コンパイル時間 | 537 ms |
コンパイル使用メモリ | 66,784 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-26 08:59:32 |
合計ジャッジ時間 | 1,191 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 1 ms
5,248 KB |
testcase_11 | AC | 1 ms
5,248 KB |
testcase_12 | AC | 1 ms
5,248 KB |
testcase_13 | AC | 1 ms
5,248 KB |
testcase_14 | AC | 2 ms
5,248 KB |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | AC | 1 ms
5,248 KB |
ソースコード
#include<iostream> #include<cmath> #include<vector> using namespace std; int main(){ string A,B; cin>>A>>B; bool ng=(A.length()<=5)&&(B.length()<=5)&&!(A.length()>1&&A[0]=='0')&&!(B.length()>1&&B[0]=='0'); double inta=0,intb=0; vector<int> aa,ba; for(int i=0; i<A.length(); i++){ if(A[i]<'0'||A[i]>'9')ng=false; aa.push_back(A[i]-'0'); } for(int i=0; i<B.length(); i++){ if(B[i]<'0'||B[i]>'9')ng=false; ba.push_back(B[i]-'0'); } for(int i=aa.size()-1; i>=0; i--){ inta+=aa[i]*pow(10.0,fabs(i-(int)aa.size()+1)); } for(int i=ba.size()-1; i>=0; i--){ intb+=ba[i]*pow(10.0,fabs(i-(int)ba.size()+1)); } cout<<((ng&&inta<=12345&&intb<=12345)?("OK"):("NG"))<<endl; return 0; }