結果

問題 No.8062 A + B
ユーザー kenta255kenta255
提出日時 2020-04-01 22:49:40
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 337 bytes
コンパイル時間 2,621 ms
コンパイル使用メモリ 192,776 KB
最終ジャッジ日時 2025-01-09 12:19:29
ジャッジサーバーID
(参考情報)
judge3 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 2
other AC * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define FOR(I,A,B) for(ll I = ll(A); I < ll(B); ++I)
const ll MOD = 1000000007;
int main(){
  string a,b;
  cin >> a >> b;
  ll ans;
  if(b[0]=='-'){
    ans = stoll(a) + stoll(b);
    cout << ans << endl;
  }else{
    //ans = stoll(a+b);
    cout << a+b << endl;
  }
}
0