結果

問題 No.1986 Yummy
ユーザー HentciHentci
提出日時 2022-07-11 17:16:32
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 522 bytes
コンパイル時間 2,458 ms
コンパイル使用メモリ 242,084 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-22 04:40:33
合計ジャッジ時間 3,200 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define all(x) x.begin(),x.end()
#define ar array
#define sz(x) ((int)x.size())
template <class T,class S> inline bool chmin(T &a,const S &b) {return (a> b? a= b, 1: 0);}
template <class T,class S> inline bool chmax(T &a,const S &b) {return (a< b? a= b, 1: 0);}
int main(){
    ios_base::sync_with_stdio(false),cin.tie(0);
    int n;
    cin >> n;
    // o -> 1
    // oxo -> 1
    // 5 oxoxo -> 1
    cout << (n & 1 ? 1 : n / 2) << "\n";

    return 0;
}
0