結果

問題 No.815 Are you a traveller ?
ユーザー zxc_programmingzxc_programming
提出日時 2019-05-20 02:42:37
言語 C++17(clang)
(17.0.6 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 104 bytes
コンパイル時間 555 ms
コンパイル使用メモリ 118,016 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-30 14:07:24
合計ジャッジ時間 1,087 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>

int main(){
    int n;
    std::cin >> n;
    
    std::cout << n/2 + n%2 <<"\n";
}
0