結果

問題 No.1986 Yummy
コンテスト
ユーザー Hentci
提出日時 2022-07-11 17:12:06
言語 C++23
(gcc 15.2.0 + boost 1.89.0)
コンパイル:
g++-15 -O2 -lm -std=c++23 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
WA  
実行時間 -
コード長 609 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 2,891 ms
コンパイル使用メモリ 332,620 KB
実行使用メモリ 7,720 KB
最終ジャッジ日時 2026-03-06 10:47:39
合計ジャッジ時間 4,029 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 18 WA * 6
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#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 -> 3 / 2 -> 1
    // oxoxo -> 5 / 2 / 2 -> 1
    // oxoxoxo -> 2
    cout << (n == 1 ? 1 : !(n & 1) ? n / 2 : (n % 4 == 1) ? n / 4 : n / 4 + 1) << "\n";

    return 0;
}
0