結果
問題 | No.5000 特殊ジャッジテスト(テスト用) |
ユーザー | 👑 Nafmo2 |
提出日時 | 2017-12-03 09:36:25 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 748 bytes |
コンパイル時間 | 3,014 ms |
実行使用メモリ | 1,508 KB |
スコア | 1,008 |
最終ジャッジ日時 | 2018-03-12 00:04:18 |
ジャッジサーバーID (参考情報) |
judge6 / |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
1,504 KB |
testcase_01 | AC | 2 ms
1,504 KB |
testcase_02 | AC | 2 ms
1,508 KB |
testcase_03 | AC | 2 ms
1,504 KB |
ソースコード
#include<iostream> #include<cstdio> #include<cmath> #include<cstring> #include<string> #include<stack> #include<queue> #include<vector> #include<algorithm> #include<iomanip> #include<cassert> typedef long long int ll; using namespace std; #define FOR(i,a,b) for (int i=(a);i<(b);i++) #define REP(i,n) for (int i=0;i<(n);i++) #define EREP(i,n) for (int i=1;i<=(n);i++) const int MOD = 1000000007; const int INF = 1000000; //#define EVEL 1 #ifdef EVEL #define DEB(X) cout << #X << ":" <<X<<" " ; #define TF(f) f ? cout<<"true " : cout<<"false "; #define END cout<<"\n"; #else #define DEB(X) {X=X;} #define TF(f) {f=f;} #define END {} #endif int N; int main(){ ios::sync_with_stdio(false); cin>>N; cout<<2<<" "<<N-2; return 0; }