結果

問題 No.8062 A + B
ユーザー pockyny
提出日時 2020-04-01 22:21:44
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 362 bytes
コンパイル時間 701 ms
コンパイル使用メモリ 65,280 KB
最終ジャッジ日時 2025-01-09 12:11:24
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <cassert>
using namespace std;
string a,b;
int main(){
    cin >> a >> b;
    int i;
    for(i=1;i<a.size();i++){
        if(a[i]>='0' && a[i]<='9') continue;
        assert(false);
    }
    for(i=1;i<b.size();i++){
        if(b[i]>='0' && b[i]<='9')continue;
        assert(false);
    }
    cout << 20 << endl;
}
0