結果

問題 No.687 E869120 and Constructing Array 1
ユーザー tempura_pptempura_pp
提出日時 2018-05-18 23:54:34
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 513 bytes
コンパイル時間 601 ms
コンパイル使用メモリ 80,948 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-28 14:09:09
合計ジャッジ時間 1,189 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include<algorithm>
#include<iomanip>
#include<queue>
#include<deque>
#include<map>
#include<bitset>
#include<math.h>
using namespace std;
#define rep(i,n) for(ll i=0;i<(ll)(n);i++)
#define REP(i,m,n) for(ll i=m;i<(ll)(n);i++)
typedef pair<int,long long> pint;
typedef long long ll;
const ll mod= 1e9+7;
const int inf=1e9+7;
const ll  longinf = 1LL<<60;
int dx[4]={1,0,-1,0}, dy[4]={0,1,0,-1};

int main(){
  int n;
  cin>>n;
  cout<<n/2<<" "<<(n+1)/2<<endl;

  return 0;
  }
0