結果

問題 No.815 Are you a traveller ?
ユーザー shidoro_onnshidoro_onn
提出日時 2019-06-16 22:58:16
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 151 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 28,416 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-24 22:25:26
合計ジャッジ時間 816 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 1 ms
6,816 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 1 ms
6,824 KB
testcase_06 WA -
権限があれば一括ダウンロードができます

ソースコード

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