結果

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

ソースコード

diff #

#include <iostream>
using namespace std;
int main(){
    int N;cin >> N;
    return (cout << N/2 << " "<< (N+1)/2<<endl),0;
}
0