結果

問題 No.815 Are you a traveller ?
ユーザー shidoro_onnshidoro_onn
提出日時 2019-06-16 22:58:16
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 151 bytes
コンパイル時間 1,769 ms
コンパイル使用メモリ 27,392 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-03 18:50:49
合計ジャッジ時間 1,023 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 1 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 1 ms
5,376 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