結果

問題 No.687 E869120 and Constructing Array 1
ユーザー ei1333333ei1333333
提出日時 2018-05-18 22:21:32
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 1,000 ms
コード長 234 bytes
コンパイル時間 2,015 ms
コンパイル使用メモリ 192,444 KB
最終ジャッジ日時 2025-01-05 10:37:02
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;

using int64 = long long;
const int INF = 1 << 30;

int main() {
  int N;
  cin >> N;
  if(N > 10) cout << N / 2 << " " << (N + 1) / 2 << endl;
  else cout << 1 << " " << N - 1 << endl;

}
0