結果

問題 No.3062 A + B
ユーザー ShibuyapShibuyap
提出日時 2020-04-01 21:30:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 682 bytes
コンパイル時間 1,430 ms
コンパイル使用メモリ 163,616 KB
実行使用メモリ 4,504 KB
最終ジャッジ日時 2023-09-09 16:00:36
合計ジャッジ時間 2,231 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 1 ms
4,376 KB
testcase_10 AC 2 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (n); ++i)
#define srep(i,s,t) for (int i = s; i < t; ++i)
#define drep(i,n) for(int i = (n)-1; i >= 0; --i)
using namespace std;
typedef long long int ll;
typedef pair<int,int> P;
#define yn {puts("YES");}else{puts("NO");}
#define MAX_N 200005

int main() {
    int a, b;
    cin >> a >> b;
    if(a == 10)a = 2;
    if(a == -10)a = -2;
    if(b == 10)b = 2;
    if(b == -10)b = -2;
    int ans = a + b;
    if(ans < 0)cout << '-';
    ans = abs(ans);
    if(ans <= 1)cout << ans << endl;
    else if(ans == 2)cout << 10 << endl;
    else if(ans == 3)cout << 11 << endl;
    else cout << 100 << endl;
    return 0;
}
 
 
0