結果
| 問題 |
No.353 ヘイトプラス
|
| コンテスト | |
| ユーザー |
treeone
|
| 提出日時 | 2016-04-01 22:28:09 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 1,000 ms |
| コード長 | 269 bytes |
| コンパイル時間 | 389 ms |
| コンパイル使用メモリ | 53,848 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-06-29 13:16:59 |
| 合計ジャッジ時間 | 963 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 7 |
ソースコード
#include <iostream>
#define all(a) a.begin(),a.end()
#define o(a) cout<<a<<endl
#define int long long
using namespace std;
//typedef vector<int> vi;
//typedef vector<vi> vvi;
typedef pair<int,int> pii;
signed main(){
int a,b;
cin>>a>>b;
int ans=a-(-1)*b;
o(ans);
}
treeone