結果
| 問題 |
No.5000 特殊ジャッジテスト(テスト用)
|
| ユーザー |
|
| 提出日時 | 2017-12-03 09:35:43 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 748 bytes |
| コンパイル時間 | 1,409 ms |
| 実行使用メモリ | 1,508 KB |
| スコア | 1,008 |
| 最終ジャッジ日時 | 2018-03-12 00:04:16 |
|
ジャッジサーバーID (参考情報) |
judge7 / |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 4 |
ソースコード
#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<<1<<" "<<N-1;
return 0;
}