結果

問題 No.815 Are you a traveller ?
ユーザー shidoro_onn
提出日時 2019-06-16 22:58:16
言語 C
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 151 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 28,416 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-24 22:25:26
合計ジャッジ時間 816 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 2
other AC * 2 WA * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
int main(void){int num=0;
    scanf("%d",&num);
    num = num/2;
    if(num%2){
        num = num/2+1;
    }
    printf("%d",num);
}
0