結果
問題 | No.353 ヘイトプラス |
ユーザー |
![]() |
提出日時 | 2016-04-01 22:25:51 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 621 bytes |
コンパイル時間 | 757 ms |
コンパイル使用メモリ | 100,136 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-29 13:16:47 |
合計ジャッジ時間 | 1,339 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 7 |
ソースコード
#include <iostream> #include <algorithm> #include <cmath> #include <vector> #include <complex> #include <queue> #include <deque> #include <set> #include <map> #include <unordered_set> #include <unordered_map> #include <iomanip> #include <assert.h> #include <array> #include <cstdio> #include <cstring> #include <random> #include <functional> #include <numeric> #include <bitset> using namespace std; void main_(); signed main() { cin.tie(0); ios::sync_with_stdio(false); main_(); return 0; } typedef long long ll; int const inf = 1<<29; void main_() { int a, b; cin >> a >> b; cout << (a - (-b)) << endl; }