結果
問題 | No.5000 特殊ジャッジテスト(テスト用) |
ユーザー | HAHAHA |
提出日時 | 2015-04-17 10:06:50 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 773 bytes |
コンパイル時間 | 1,131 ms |
実行使用メモリ | 1,496 KB |
スコア | 908 |
最終ジャッジ日時 | 2018-03-11 23:59:36 |
ジャッジサーバーID (参考情報) |
judge6 / |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
1,492 KB |
testcase_01 | AC | 2 ms
1,496 KB |
testcase_02 | AC | 2 ms
1,496 KB |
testcase_03 | AC | 2 ms
1,492 KB |
ソースコード
#include<iostream> #include<sstream> #include<cstdio> #include<cstring> #include<string> #include<vector> #include<list> #include<queue> #include<utility> #include <fstream> #include<set> #include<map> #include<cctype> #include<cmath> #include<algorithm> using namespace std; #define RALL(x) (x).rbegin(),(x).rend() #define ALL(x) (x).begin(),(x).end() #define repp(i,n) for(int (i)=1;(i)<=(n);(i)++) #define rep(i,n) for(int (i)=0;(i)<(n);(i)++) #define rev(i,n) for(int (i)=(n-1);(i)>=0;(i)--) #define clr(a) memset((a), 0 ,sizeof(a)) typedef pair<int,int> P; typedef vector<pair<int,int> > pii; typedef map<string,string> mi; int main(){ long long int n,a=0,b=0; cin >> n; if(0<n){a=n*-1;b=n*2;} else{a=n*2;b=n*-1;} cout << a << " " << b << endl; return 0; }