結果
| 問題 |
No.1986 Yummy
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-07-11 17:12:06 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 609 bytes |
| コンパイル時間 | 2,626 ms |
| コンパイル使用メモリ | 242,380 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-06-22 04:31:03 |
| 合計ジャッジ時間 | 3,494 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 18 WA * 6 |
ソースコード
#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;
}