結果

問題 No.1986 Yummy
ユーザー enqu990enqu990
提出日時 2022-07-08 00:09:35
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 314 bytes
コンパイル時間 2,192 ms
コンパイル使用メモリ 185,400 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-25 13:49:47
合計ジャッジ時間 3,678 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _GLIBCXX_DEBUG
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, n) for (int i = 0; i < (n); i++)

int main() {
    int n; 
    cin >> n;

    int ans;
    if (n % 2 == 0) {
        ans = n / 2;
    } else {
        ans = 1;
    }

    cout << ans << endl;

    return 0;
}
0