結果

問題 No.687 E869120 and Constructing Array 1
ユーザー dong_feng
提出日時 2018-06-07 23:28:09
言語 C
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 167 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 29,568 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-30 10:35:37
合計ジャッジ時間 1,756 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <math.h>

int main(void){
    int sum;
    scanf("%d",&sum);
    
    printf("%d %d\n",floor(sum/2.0),ceil(sum/2.0));
    
    return 0;
}
0