結果
問題 | No.353 ヘイトプラス |
ユーザー |
![]() |
提出日時 | 2019-06-15 10:47:34 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 575 bytes |
コンパイル時間 | 671 ms |
コンパイル使用メモリ | 73,252 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-03 22:43:57 |
合計ジャッジ時間 | 1,412 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 7 |
ソースコード
#include <iostream>#include <vector>#include <string>#include <set>#include <map>#include <algorithm>using LL=long long;using std::cout;using std::endl;using std::cin;using std::vector;using std::string;using std::set;using std::multiset;using std::pair;using std::map;using std::min;using std::max;using std::make_pair;using std::swap;namespace ndifix{template<class T> void sort(T &v){std::sort(v.begin(),v.end());}template<class T> void rsort(T &v){std::sort(v.rbegin(),v.rend());}}int main(){int a,b;cin>>a>>b;cout<<a-(-1)*b<<endl;return 0;}