結果
問題 | No.3062 A + B |
ユーザー | Shibuyap |
提出日時 | 2020-04-01 21:30:46 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 682 bytes |
コンパイル時間 | 1,573 ms |
コンパイル使用メモリ | 166,460 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-27 08:47:39 |
合計ジャッジ時間 | 2,054 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
ソースコード
#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; }